When a JavaScript variable is declared, its data type must be specified.
True
false
1 answer
False. JavaScript variables do not require a specific data type to be specified when declared. JavaScript is a loosely typed language and the data type of a variable is determined dynamically based on the value assigned to it.