JS menambahkan bidang ke peta

randomObject['hello'] = 'world';

//like
var myMap = {};

// ...

myMap[newKey] = newValue;
Defiant Dove