fork download
  1. class Klasemen {
  2. constructor(daftarKlub = []){
  3. this._poin = new Map();
  4.  
  5. daftarKlub.forEach(k=>this._poin.set(k,0));
  6. }
  7.  
  8. }
  9.  
  10. const klasemen = new Klasemen(['Liverpool', 'Chelsea', 'Arsenal'])
  11. console.log(klasemen)
Success #stdin #stdout 0.03s 16804KB
stdin
Standard input is empty
stdout
[object Object]