In previous articles in this series, I explained my mental models around understanding 1) what React is and how it […]
Tag: javascript
Crap, we might have installed a malicious dependency…
That was the reality for a lot of companies after the ua-parser-js supply chain attack. On October 22 three malicious […]
The Most POWERFUL [JavaScript] Function
Clean Code StudioFollow Clean Code Clean Life ~ Simplify Did you know I have a newsletter? If you want to […]
IIFE – Immediately Invoked Function Expression – JavaScript
Topics covered: Introduction Why do we use IIFE Alternative in ES6+ Introduction It is a function expression that runs as […]
Add a vimperator command for ‘verbatim’ Google results
I find myself needing to toggle ‘verbatim’ mode on very often, which requires three mouse-clicks. For keyboard addicts, that’s three […]
Promises and async functions
With JavaScript, some operations are asynchronous, and many of these asynchronous operations are signalled via promises. For instance, fetching data […]
Convert RGB to Hex color codes in JavaScript
Sometimes you have the RGB color code but you just really want the Hex code, right? Well converting RGB to […]
Diving Deeper into Technologies
I am going to get back into updating more regularly on here again. A lot of distractions have occurred that […]
Docker in development (with Node.js)
This post is going to help you find out how to setup docker in such a way that you can […]
Observable objects in JavaScript
More here: http://eventargs.com/2012/11/30/lookout-js-and-observable-javascript-objects/ var watch = function(obj, prop, callback) { var oldValue = obj[prop] , newValue = oldValue , getter […]
SQL Server to React in 60 Seconds With Prisma
Previously published at fullstackfish.com Connecting SQL Server to React with Prisma is a straightforward and satisfying experience. This post will […]
Build a Simple Clock using JavaScript
The best way to learn to code is by practice and building small projects. As part of this blog, let’s […]
Why I migrated to msw from json-server
Introduction At my company we’ve been using json-server since the beginnand as it started simple. Now we’ve reached a point […]
Build address search component in React
In this post, I’m going to build an address search component using React. Requirements In the component, I have a […]
API Calls
Javascript API Calls XML HTTP Request All modern browsers support the XMLHttpRequest object to request data from a server. It […]
25 Beginner JavaScript Project Ideas
I previously wrote a blog about 15 JavaScript beginner projects and it was quite popular ( check it out here […]
All Of My Articles Combined
Absolutely Everything You Could Need To Know About How JavaScript Works. Seriously… this list is utterly exhaustive it covers more […]
Javascript range / list comprehensions
I was looking how to use a python-equivalent range function. The closest I found is Array.apply(null, Array(16)).map( function (_, i) […]
Interview Questions in Javascript & Node.js
Javascript JavaScript is a scripting or programming language. It is lightweight and most commonly used as a part of web […]
Array.prototype.slice() vs Array.prototype.splice()
Introduction of JavaScript Array Slice Vs Array Splice: In this article, we will briefly discuss array slice method and array […]