The Typeof Operator in JavaScript
The typeof Operator determines the datatype of the operand.
var name = "Keith"; document.write(typeof(name));
The typeof Operator determines the datatype of the operand.
var name = "Keith"; document.write(typeof(name));
Leave a Reply