Expert Developer JavaScript Question:

What is called Variable typing in Javascript?

Tweet Share WhatsApp

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.

Download Expert JavaScript Developer PDF 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?