Hacker News new | ask | show | jobs
by CrossEye 4019 days ago
as inglor said, this depends on strict mode:

    > var isboxed = (function() {"use strict"; return function isboxed() {return this instanceof Number;}}());
    > isboxed.call(5);
    false