Last active
August 29, 2015 14:20
-
-
Save sagiavinash/512654a455246af37fe9 to your computer and use it in GitHub Desktop.
Check variable's primitive datatype
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
// just typepof myVar == 'string' fails when my var is declared => var myVar = new String("value"); | |
if (typeof myVar == 'string' || myVar instanceof String){ | |
// it's a string | |
} | |
// just typepof myVar == 'string' fails when my var is declared => var myVar = new String("value"); | |
if (typeof myVar == 'number' || myVar instanceof Number){ | |
// it's a string | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment