function main() { var a = null; if (a == null) a = 10; $type(a); // Null> var b = null; $type(b); // Null> b = null; $type(b); // Null>> b = null; $type(b); // Null>>> b = 10; $type(b); // Null>> }