function math(value) {
if (this.store === undefined) {
this.store = value
} else {
this.store *= value
}
return this.store
}
console.log(math(5)) // 5
console.log(math(2)) // 10
console.log(math(3)) // 30
функция это объект
внутри объекта можно хранить значения