Skip to content

Instantly share code, notes, and snippets.

@wdiasvargas
Last active April 23, 2018 02:00
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 wdiasvargas/3d7e5f155ac37fb0eec9692fcea78143 to your computer and use it in GitHub Desktop.
Save wdiasvargas/3d7e5f155ac37fb0eec9692fcea78143 to your computer and use it in GitHub Desktop.
var str = "isso é uma string";
typeof(str);//'string'
var num = 1.74;
typeof(num);//'number'
var bol = true;
typeof(bol);//'boolean'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment