Computer Science, asked by lovelyrose0090, 3 months ago

Assign a value 2 to the variable A.
write a JS statement

Answers

Answered by yashwanth102030
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