Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Array.prototype.sum = function() {
var sum = 0;
for(var i = 0; i < this.length; i++) sum += this[i];
return sum;
};
alert(anzahl.sum());