freecodecamp.orgHow to Use Variables and Data Types in JavaScript – Explained With Code ExamplesA variable is like a box where you can store data or a reference to data. In this article, you will learn how to create and use variables. You'll also learn about the different data types in JavaScript and how to use them. Let's get started! Table of...Aug 19, 2024·24 min read
freecodecamp.orgWhat is Prototypal Inheritance in JavaScript? Explained with Code ExamplesPrototypal inheritance can feel like a complex concept shrouded in technical jargon. But fear not! This guide will break it down using clear, relatable examples that go beyond the typical textbook explanations. We'll ditch the confusing terms and fo...May 31, 2024·13 min read
freecodecamp.orgHow Do Closures Work in JavaScript? Explained with Code ExamplesSally and Joe are two love birds. They shared everything with each other and soon enough it was almost impossible to think that anything could come between them. One day, they had a quarrel which built up to a break up. It was hard for Joe and he ...May 7, 2024·7 min read
articles.austinasoluka.comJavaScript: Working with numbersIn other languages like C or Java, you have to be specific as to what kind of number you wish to store in a variable. You'd need to explicitly tell the compiler if the variable will store a floating point value (a number with a decimal point), or an ...Sep 14, 2023·10 min read
articles.austinasoluka.comJavaScript: Reference Data TypesReference data types are data passed by reference. An understanding of this statement is crucial throughout your career as a JavaScript developer so do well to pay close attention to the concept we are about to learn. Consider the image below careful...Sep 13, 2023·10 min read