javascript access obect code example
Example 1: javascript object string property
// Also useful for dynamic strings, e.g. `thing-${variable}`
myObject['thing'] = true;
Example 2: javascript object
let names = {
name1: 'What ever you want to put'
}