Skip to content

Instantly share code, notes, and snippets.

@zkareemz
Created February 14, 2016 14:21
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 zkareemz/a88a7f62d1dd88ab5016 to your computer and use it in GitHub Desktop.
Save zkareemz/a88a7f62d1dd88ab5016 to your computer and use it in GitHub Desktop.
Get the javascript object type
function getType(o){
return Object.prototype.toString.call(o).split(' ').pop().replace(']','').toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment