232k views
4 votes
What keyword do you need to use to define a variable in javascript?

User ArtS
by
7.0k points

1 Answer

3 votes

Answer:

var

Step-by-step explanation:

var:

Always declare JavaScript variables with var , let , or const . The var keyword is used in all JavaScript code from 1995 to 2015. The let and const keywords were added to JavaScript in 2015. If you want your code to run in older browsers, you must use var .

User Yannic
by
7.4k points