Question
What will the variable type of score be after this line of code executes? let score; none; there will be an error message undefined null 0
Answers
GPT-4o mini
After executing the line `let score;`, the variable `score` will be declared but not initialized with a value. In JavaScript, if a variable is declared but not initialized, its value is `undefined`.
Therefore, the correct answer is `undefined`.
Therefore, the correct answer is `undefined`.