Advance part in Functions
- Functions are special type of Objects
Function stored in Object
Function as Methods
- Function stored in an object termed as Methods
const person = {
age: 20
greet: function greet(){
console.log('Methods')
}
}
person.greet()
[Read More]