Quick actions

cmd+k|ctrl+k

Navigation

Languages

typeof

Snippet info

Language

JavaScript

Visibility

public

Author

yahiko

Created

2018-07-19T08:05:33Z

Updated

2018-07-19T08:11:12Z

var booleanValue = true;
var nullValue = null;
var undefinedValue;

console.log(typeof booleanValue);
console.log(typeof nullValue);
console.log(typeof undefinedValue)

console.log(typeof undeclaredValue)
INFO