When a JavaScript variable is declared, its data type must be specified.

True

False

False. JavaScript is a dynamically typed language, so variables do not need to have their data type specified when declared. The data type of a variable is determined based on the value assigned to it.