Assign a value 2 to the variable A.
write a JS statement
Answers
Answered by
1
Explanation:
Creating a variable in JavaScript is called "declaring" a variable. You declare a JavaScript variable with the var keyword: var carName; After the declaration, the variable has no value (technically it has the value of undefined ).
Similar questions