Which of the following is a valid number in JavaScript?
10
"one"
true
[1, 2, 3]
Correct: A
In JavaScript, numbers can be represented using digits, such as 10. The other options, "one" (a string), true (a boolean), and [1, 2, 3] (an array), are not valid numbers in JavaScript.