Skip to content

Instantly share code, notes, and snippets.

@sergeevabc
Created October 17, 2014 11:50
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 sergeevabc/a6d1feef26f5d423a2eb to your computer and use it in GitHub Desktop.
Save sergeevabc/a6d1feef26f5d423a2eb to your computer and use it in GitHub Desktop.
What is the type of that variable? (String, Array, etc)
function type(variable) {
return Object.prototype.toString.call(variable).replace(/^\[object (.+)\]$/, "$1").toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment