Intro to Node.js

November 10, 2022 Galen 0

Node.js is a runtime built on Google Chrome’s V8 JavaScript engine (built with C++). Traditionally, JavaScript could only be ran in the browser. Node took […]

Inheritance vs. Composition

November 1, 2022 Galen 0

In object-oriented programming, inheritance and composition are two techniques for relating our classes and providing code reusability. Inheritance is where we inherit properties and functionality […]