The primary difference is that const variables are block-scoped, meaning they are only accessible within the block they are defined in, while let variables are mutable.
15.
What will be logged to the console after 1 second?
The code will throw a TypeError because person is declared with const, making it immutable. Attempting to reassign person to a new object will result in an error.