Uriel Rodriguez·Mar 7, 2021Modules 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…
Uriel Rodriguez·Feb 28, 2021Node.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…
Uriel Rodriguez·Feb 21, 2021Functional Programming in JavaScriptWhen we think of programming paradigms, the one that receives the most coverage is Object-Oriented Programming. This is to say, a…A response icon1A response icon1
Uriel Rodriguez·Feb 13, 2021Working 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…
Uriel Rodriguez·Feb 6, 2021Exploring Closures in JavaScript cont.To recap my last blog, “Exploring Closures with JavaScript Functions”, to understand closures, it’s essential to remember that functions…
Uriel Rodriguez·Feb 2, 2021Exploring 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…
InThe StartupbyUriel Rodriguez·Jan 26, 2021JavaScript Parameters and ArgumentsIn programming, functions are foundational. They modularized logic and which creates reusability and cleaner code. Sometimes functions are…
Uriel Rodriguez·Jan 19, 2021Understanding 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…
InThe StartupbyUriel Rodriguez·Jan 11, 2021Extending 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…
InThe StartupbyUriel Rodriguez·Jan 5, 2021Making 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…A response icon1A response icon1