1.

What is JavaScript variable?​

Answer» JAVASCRIPT uses the var keyword to define variables.An equal sign is used to assign VALUES to variables.In this example, x is defined as a VARIABLE. Then, x is ASSIGNED (GIVEN) the value 6:var x;x = 6


Discussion

No Comment Found