Javascript : Object, Prototype & Proto Chaining Understand with real world example
Object
Object is entity which has some property & methods . It use to store various collection of data with key value pairs .
const person = {
fname: "Hitesh",
lname: "Chaudhry",
address: {
h: 1,
s: 2
},
greet: fun...
gokuthecoder.hashnode.dev10 min read