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.
Example
i = 10;
i = "string";
This is called variable typing.
Previous Question | Next 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? |