function Accumulator(startingValue){
this.startingValue = startingValue;
this.read = function(){
this.a = +prompt('Сколько будем прибавлять?', '');
};
this.value = 0 + this.a;
};
var accumulator = new Accumulator(1);
accumulator.read();
console.log( accumulator.value);
function Accumulator(startingValue) {
this.value = startingValue;
this.read = function() {
this.value += +prompt('Сколько добавлять будем?', 0);
};
}
var accumulator = new Accumulator(1);
accumulator.read();
accumulator.read();
alert( accumulator.value );
P.S Спасибо за внимание
Айфон мало держит заряд, разбираемся с проблемой вместе с AppLab