useful inbuilt function mostly used in objects and array
const person = {
name: "John",
age: 30,
address: {
street: "123 Main St",
city: "Exampleville",
country: "Exampleland"
},
hobbies: ["reading", "coding", "running"],
sayHello: function() {
console.log("Hello, my name is " +...
gokulpisharody.hashnode.dev6 min read