Друзья, подскажите, почему этот вариант прототипа не делает доступной функцию getTags, а тот который закомментирован - да?
function Element(){
if( typeof Element.getTags !== "function"){
//Element.prototype.getTags = function( elem ){ console.log( elem );}
Element.prototype = {
constructor: Element,
getTags : function( elem ){ console.log( elem );}
}
}
}
var el = new Element();
el.getTags();