Click to See Complete Forum and Search --> : typeof....


to know
06-18-2003, 09:17 AM
Hi,

i have another query what is 'typeof'...?

Khalid Ali
06-18-2003, 11:07 AM
typeof returns the JavaScript object type.

for example if you have a date object created like this.

var date = new Date();

alert(typeof date)

it will return an alert box with "object"

A String variable will return a string and a number will return number

Jona
06-18-2003, 11:20 AM
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/ops.html#1042603

Jona