Skip to content

Instantly share code, notes, and snippets.

@wdiasvargas
Last active April 23, 2018 02:16
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/47bbd543f8833c8bac7bc801aecbe3f2 to your computer and use it in GitHub Desktop.
Save wdiasvargas/47bbd543f8833c8bac7bc801aecbe3f2 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'
var und; //undefined
typeof(und) //'undefined'
var nul = null
typeof(nul) //object
nul === null //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment