Skip to content

Instantly share code, notes, and snippets.

@odahcam
Created October 7, 2017 12:33
Show Gist options
  • Save odahcam/ce9d2183214049ff0f5958c36186dad2 to your computer and use it in GitHub Desktop.
Save odahcam/ce9d2183214049ff0f5958c36186dad2 to your computer and use it in GitHub Desktop.
Gets the type of the given object.
function getType(obj) {
return ({}).toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment