spacer
Yehuda Shiran November 8, 1999
Detecting Data Types
Tips: November 1999

Yehuda Shiran, Ph.D.
Doc JavaScript

Developer News
Microsoft Shows Off Silverlight 4, IE9 Plans
Metasploit Expands Vulnerability Test Framework
HyperCard Reborn?

The tyepof operator returns a string that identifies the data type of an expression. Its general syntax is:

typeof [(]expression[)]

As you can see, the parentheses are optional, because typeof is an operator, not a function. It returns one of the following strings:

  • "boolean"
  • "function"
  • "number"
  • "object"
  • "string"
  • "undefined"
Here's an example:

function doIt() {
  // do something
}

var a = true;
var b = doIt;
var c = 19;
var d = window.location;
var e = "Microsoft";
var f;
alert(typeof a); // "boolean"
alert(typeof b); // "function"
alert(typeof c); // "number"
alert(typeof d); // "object"
alert(typeof e); // "string"
alert(typeof f); // "undefined"


People who read this tip also read these tips:

Look for similar tips by subject:

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Rolling Out Your Own HTML Application Version Control · HTML 5: Client-side Storage · Working with Ajax Server Extensions
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Wi-Fi Product Watch, November 2009 · Chip Market Recovering From '08 Collapse · Low-Cost Tools to Kickstart Your New Business