how to make an object javascript code example
Example 1: creating an object javascript
let obj = {
// fields
name:"value",
num: 123,
//methods
foo: function(){}
}
Example 2: create object javascript
const object = {
something: "something";
}
Example 3: javascript object
let names = {
name1: 'What ever you want to put'
}