Last active
August 29, 2015 14:22
-
-
Save pablomdo/57e3db62dfd349130c63 to your computer and use it in GitHub Desktop.
Como criar métodos de extensão utilizando o prototype
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.prototype.somar = function () { | |
function saoNumeros(item) { | |
return typeof item === 'number'; | |
} | |
function soma(anterior, atual) { | |
return anterior + atual; | |
} | |
// Garante que todos os itens do Array | |
// sejam números | |
if (!this.every(saoNumeros)) return 0; | |
return this.reduce(soma); | |
}; | |
[1, 2, 3].somar(); // 6 | |
['alcemar', 'illuminati', true].somar(); // 0 | |
Function.prototype.temArgumentos = function () { | |
return this.length > 0; | |
}; | |
false.toString.temArgumentos(); // false | |
[].join.temArgumentos(); // true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Garanta que o método que você vai adicionar | |
// não exista, não sobreescreve o código dos outros :) | |
if (!Array.prototype.somar) { | |
Array.prototype.somar = function () { | |
function saoNumeros(item) { | |
return typeof item === 'number'; | |
} | |
function soma(anterior, atual) { | |
return anterior + atual; | |
} | |
// Garante que todos os itens do Array | |
// sejam números | |
if (!this.every(saoNumeros)) return 0; | |
return this.reduce(soma); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment