InterviewSolution
Saved Bookmarks
| 1. |
What is the data type concepts of JavaScript? |
|
Answer» In PROGRAMMING, DATA types is an important concept.To be able to OPERATE on variables, it is important to know something about the type.Without data types, a computer cannot SAFELY solve this:var x = 16 + "VOLVO"; |
|