Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== typeof ====== A less-known operator in JavaScript is the typeof operator. It tells you what type of data you're dealing with. Makes sense, huh? Let's look at some examples: <code javascript> var BooleanValue = true; var NumericalValue = 354; var StringValue = "This is a String"; alert(typeof BooleanValue) // displays "boolean" alert(typeof NumericalValue) // displays "number" alert(typeof StringValue) // displays "string" </code> ===== checking for existence ===== <code javascript> if( typeof addEvent != 'undefined' ){ // addEvent method exists, and is okay to use here } </code> ===== typeof with document.getElementById ===== Do NOT use the following: <code javascript> if( typeof document.getElementById('someElementId') != 'undefined' ){ // do something with element } </code> ...because getElementById() is a method which incorporates its own typeof checking. If an element doesn't exist, it will still return 'Object', because null is what is returned and it is an Object in itself. Instead, simply do this: <code javascript> if( document.getElementById('someElementId') != null ){ // do something with element } // or var el = document.getElementById('someElementId'); if( el ){ // do something with element } </code> docs/programming/javascript/typeof.txt Last modified: 2008/08/03 00:25by 127.0.0.1