Modules in Node.jsIt can be said that the building blocks of an application are modules. Modules are isolated pieces of code that when put together…Mar 7, 2021Mar 7, 2021
Node.js And Its Event-Driven ArchitectureLately, as I have been focused on Node.js development, I have spent time learning about the underlying ideas that power the platform…Feb 28, 2021Feb 28, 2021
Functional Programming in JavaScriptWhen we think of programming paradigms, the one that receives the most coverage is Object-Oriented Programming. This is to say, a…Feb 21, 20211Feb 21, 20211
Working with JavaScript’s Built-in Function MethodsIn JavaScript, anything that is not a primitive value such as strings or integers is an object. What this means is that functions are…Feb 13, 2021Feb 13, 2021
Exploring Closures in JavaScript cont.To recap my last blog, “Exploring Closures with JavaScript Functions”, to understand closures, it’s essential to remember that functions…Feb 6, 2021Feb 6, 2021
Exploring Closures with JavaScript FunctionsContinuing with the theme of functions and their many lesser-known features, closures are one of the more important and powerful features…Feb 2, 2021Feb 2, 2021
Published inThe StartupJavaScript Parameters and ArgumentsIn programming, functions are foundational. They modularized logic and which creates reusability and cleaner code. Sometimes functions are…Jan 26, 2021Jan 26, 2021
Understanding the Invocation Context in JavaScriptIn JavaScript, functions are objects which provide a modular way to define a set of procedures or operations that can be used many times…Jan 19, 2021Jan 19, 2021
Published inThe StartupExtending Objects in JavaScript, ImmutablyWorking with data can take two forms, either some work is done directly to it resulting in the data being fundamentally changed or it can…Jan 11, 2021Jan 11, 2021
Published inThe StartupMaking Objects Iterable in JavaScriptUsually when we think of a data structure being iterable, we think of arrays and strings. JavaScript provides many ways to iterate over an…Jan 5, 20211Jan 5, 20211