function that takes in object, key and value and returns the updated object js code example
Example 1: get all keys of object in javascript
myObject = {
"key": "value",
"key2":"value2"
}
Object.keys(myObject);
//console.log(Object.keys(myObject)) = ["key", "key2"]
Example 2: js create object with properties
var mycar = new Car('Eagle', 'Talon TSi', 1993);