7 lines
209 B
Text
7 lines
209 B
Text
/* null non value */
|
|
|
|
if (thing == null) { puts("thing tests as null"); }
|
|
if (thing === undefined) { puts("thing strictly tests as undefined"); }
|
|
puts(typeof thing);
|
|
puts(typeof null);
|
|
puts(typeof undefined);
|