Expert Developer JavaScript Question:

Download Job Interview Questions and Answers PDF

What is called Variable typing in Javascript?

Expert JavaScript Developer Interview Question
Expert JavaScript Developer Interview Question

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 Interview Questions And Answers PDF

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?