Question

var shell = function (method) {
        window[method].apply(null, Array.prototype.slice.call(arguments, 1));
    };

shell('alert', 'monkey!');
Was it helpful?

Solution

alert.apply is the problem. Alert is not part of the language, so it may not be even a function. It is implementation-dependent.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top