Reply
Sat 10 Sep, 2011 12:55 pm
In JavaScript, a variable can hold different type of values. An example is given below:
var x;
x = 10;
.
x = true;
.
x = "hello";
.
x = Obj.n;
Can any one give me an actual code (a function) used on the web that use the same concept in JavaScript?