Web Design Tutorials & knowledge
Sunday, May 21, 2017
Show the data type structure of JS?
The structure of JS:-
var
x;
// Now x is undefined
var
x =
5
;
// Now x is a Number
var
x =
"John"
;
// Now x is a String
Newer Post
Older Post
Home