Found this excerpt in the Modernizr source code.
var documentCreateElement = scopeDocument.createElement, documentCreateDocumentFragment = scopeDocument.createDocumentFragment;
// shiv the document
for (var i = 0, elements = html5.elements, l = elements.length; i < l; ++i) {
call.call(documentCreateElement, scopeDocument, elements[i]);
}
// shiv the document create element method
scopeDocument.createElement = function (nodeName) {
var element = call.call(documentCreateElement, scopeDocument, nodeName);
I was wondering why it was necessary to use call.call, as opposed to just call What is the accomplishing that documentCreateElement.call(scopeDocument,nodeName) does not?
Thanks in advance
callis?documentCreateElement.call(...)callsdocumentCreateElement; butcall.callcallscall, socall.call(documentCreateElement,...)only callsdocumentCreateElementifcallisFunction.prototype.call-- which, despite its name, it might not be. – ruakh Feb 8 at 22:46CALL.call(documentCreateElement, ...). Would you still assume that it's equivalent todocumentCreateElement.call(...)? Well, just because the variableCALLhas been renamed tocall, that still doesn't necessarily mean that it's a copy of thecallmethod off a function object.) – ruakh Feb 8 at 22:48call-->Date.call-->Function.prototype.call. – Rob W Feb 8 at 22:50