Skip to content

Instantly share code, notes, and snippets.

@ivomota
Last active December 6, 2017 09:57
Show Gist options
  • Select an option

  • Save ivomota/a4013c2937cb7027da38 to your computer and use it in GitHub Desktop.

Select an option

Save ivomota/a4013c2937cb7027da38 to your computer and use it in GitHub Desktop.
Types in Javascript How to detect the data type of anything
var type_of = function(x) {
var type = Object.prototype.toString.apply(x);
return type.slice(type.indexOf(' ') + 1, -1);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment