undefined = false;
console.log(undefined.toString());//firebug console error "undefined has no properties"
(function(undefined) { console.log(typeof undefined); })();
why?
undefined = false;
console.log(undefined.toString());//firebug console error "undefined has no properties"
(function(undefined) { console.log(typeof undefined); })();
why?