Why does the MDN polyfill for Object.create have the following line:
Temp.prototype = null;
Is it so that we avoid maintaining a reference to the prototype argument enabling faster garbage collection?
The polyfill:
if (typeof Object.create != 'function') {
Object.create = (function() {
var Temp = function() {};
return function (prototype) {
if (arguments.length > 1) {
throw Error('Second argument not supported');
}
if (typeof prototype != 'object') {
throw TypeError('Argument must be an object');
}
Temp.prototype = prototype;
var result = new Temp();
Temp.prototype = null;
return result;
};
})();
}