Skip to content

Instantly share code, notes, and snippets.

@abozhilov
Created October 11, 2012 20:35
Show Gist options
  • Save abozhilov/3875300 to your computer and use it in GitHub Desktop.
Save abozhilov/3875300 to your computer and use it in GitHub Desktop.
typeof
function getType(obj) {
var type = typeof obj;
return (type == 'object' && obj === null) ? 'null' : type;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment