Skip to content

Instantly share code, notes, and snippets.

@pablomdo
Last active August 29, 2015 14:22
Show Gist options
  • Save pablomdo/57e3db62dfd349130c63 to your computer and use it in GitHub Desktop.
Save pablomdo/57e3db62dfd349130c63 to your computer and use it in GitHub Desktop.
Como criar métodos de extensão utilizando o prototype
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
// 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