HHitakshiinhitakshi120.hashnode.dev·May 5 · 10 min readUnderstanding Object-Oriented Programming in JavaScriptWhat Object-Oriented Programming (OOP) means Object-Oriented Programming (OOP) is a programming paradigm based on the concept of "objects"—data structures that encapsulate both data (attributes) and b00
SSSofiya Shaikhinsofiyablogonjs.hashnode.dev·Mar 25 · 5 min readThe new Keyword in JavaScriptHave you ever seen code like this and wondered what on earth new does? const myCar = new Car("Tesla", "red"); You're not alone. Most tutorials throw around words like "constructor," "prototype," "ins00