Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created April 18, 2019 09:09
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 debugmodedotnet/80f07db53f4f4699d423518558cbcc3d to your computer and use it in GitHub Desktop.
Save debugmodedotnet/80f07db53f4f4699d423518558cbcc3d to your computer and use it in GitHub Desktop.
var foo = 9;
console.log(typeof (foo)); // number
var koo;
console.log(typeof (koo)); // undefined
var too = 'Infragistics';
console.log(typeof (too)); // string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment