Tag: Introduction to javascript object

  • JavaScript Tutorial – 10: JavaScript Object

    Object syntax: “key”: “value” – object can have object & function as well – array as well as they are objects – We can access a property using . notation – We can add or remove property anytime – i.e. movie.date = 1988 delete movie.category – We can add using . or [”] – When…