In JavaScript, it is not necessary to declare a variable.

You can simply start using a variable by typing its name and assigning a value to it. This is known as implicit variable declaration. However, it is considered good practice to declare variables using the `var`, `let`, or `const` keywords to improve code readability and prevent errors. These keywords also provide you with stronger type checking and scope control.