youtube image
From YouTube: TokenScript Weekly Meeting 20200625

Description

00:55:01 hboon: class Cheque {
set amount(val){
console.log("setting amount")
this._amountValue = val;
}

get amount(){
console.log("getting amount");
return this._amountValue;
}
}

let cheque = new Cheque();
cheque.amount = 123;