Array.prototype.range
Array.prototype.range = function(a, b, step) { step = !step ? 1 : step; b = b / step; for(var i = a; i <= b; i++) { this.push(i*step); } return …
Continuar lendoConteúdo para você se capacitar em programação
Array.prototype.range = function(a, b, step) { step = !step ? 1 : step; b = b / step; for(var i = a; i <= b; i++) { this.push(i*step); } return …
Continuar lendovar counter = function () { var count = 0; this.increment = function () { count++; } this.get = function() { return count; }}//now counter.prototype.decrement = function () { count–; …
Continuar lendo