Answers

Question and Answer:

  Home  JavaScript

⟩ What is variable typing in JavaScript?

It is perfectly legal to assign a number to a variable and then assign a string to the same variable as follows

example

i = 10;

i = "string";

This is called variable typing

 152 views

More Questions for you: