Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created April 18, 2019 09:09
Embed
What would you like to do?
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