Last active
April 23, 2018 02:16
-
-
Save wdiasvargas/47bbd543f8833c8bac7bc801aecbe3f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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