In JavaScript, objects, it their simplest form represent collections of keys paired with values. JS also offers a lot of OOP features that we can use to structure and hone our code even more. Here is a little example to being with: var computer = { name: "Intel", cpuCores: 4, webCam: true }; There are … Continue reading OOP in JavaScript
