Expert Developer JavaScript Question:

What is called Variable typing in Javascript?

Answer:

Variable typing is used to assign a number to a variable and the same variable can be assigned to a string.

Example

i = 10;

i = "string";

This is called variable typing.

Read All 150 Expert JavaScript Developer Questions
Previous QuestionNext Question
What are global variables? How are these variable declared and what are the problems associated with using them?What is break and continue statements?