JS objects funciton code example
Example: how to define function in object javascript
// Functions that are defined inside objects are called methods.
let example = {
calc: function (num1, num2) {
return num1 + num2;
},
};
// Calling the method
example.calc(1,2)