AC Spotlight - Heather Craig

Prototype Inheritance in JavaScript

JavaScript uses a prototypal inheritance model, and this can be a little confusing for developers coming from class-based languages such as Java or C++. Prototype inheritance is simple but yet a powerful model. In this post, we are going to talk a little bit about it and how it is built in JS. If...

READ MORE

Understanding the JavaScript Concurrency Model

You have probably heard of terms like “V8,” “event loop,” “call stack,” and “callback queue.” In this post, we are going to examine what these terms mean, how they relate to one another, and, more generally, how JavaScript works. Javascript is a powerful language that has stood the test of time and...

READ MORE

AHP - A Group Decision Making Technique

Have you ever found your team or group in a situation where you had to make a complex decision? Maybe you came to an impasse, unable to decide between two or more options, or maybe you selected one and still doubted whether you had evaluated all possible pros and cons. Well, what if I told you that...

READ MORE