/ Published in: JavaScript
undefined is simply an undefined global variable. It is not a literal or a constant, though it is often used as if it is. Its value can be changed. To be sure its type is actually "undefined", redefine it at the beginning of your script files.
Expand |
Embed | Plain Text
/**************************************** `undefined` is simply an undefined global variable. It is not a literal or a constant, though it is often used as if it is. Its value can be changed. To be sure its type is actually "undefined", redefine it at the beginning of your script files. /****************************************/ undefined = (function(){var u; return u;})();
You need to login to post a comment.
