Skip to content

Instantly share code, notes, and snippets.

@gotofritz
Created April 7, 2013 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gotofritz/5331269 to your computer and use it in GitHub Desktop.
Save gotofritz/5331269 to your computer and use it in GitHub Desktop.
//gets type of a variable, all lower case
//gets type of a variable, all lower case
function get_type( what ){
return Object.prototype.toString.call( what ).slice( 8,-1 ).toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment