After raising a $4,900,000 seed investment back in March 2021, Deno has just announced quite a substantial round of Series A investment of …
Javascript
How to Sort an Array of Object Values Alphabetically and Numerically
While sorting an array of objects recently, I needed to sort by an identifier prefixed with two letters and ended with numbers. An example …
How to Remove Duplicate Items From an Array in JavaScript (the Easy Way)
Languages such as PHP have methods for de-duplicating arrays, but Javascript strangely does not. In PHP, you can write. array_uniqueAnd this …
How to Work With DATETIME Values in JavaScript
Dates in Javascript have always been a PITA. It is one of the reasons that libraries like MomentJS reigned supreme for so long. Things are …
How to Add Infinite Scrolling to a HTML Element With Vanilla JavaScript
There is a Javascript library for almost anything. But sometimes, it's good to code your solutions to specific problems where the resulting …
How to Add Typings to the Global TypeScript Window Object
Does this error look familiar? Property 'AddressFinder' does not exist on type 'Window & typeof globalThis'.ts(2339) There will come …
Why you should choose Aurelia over React (mostly)
The popularity of React is undeniable. When bright-eyed developers think about creating a new app, React is usually the first thing that …
How To Easily Convert A Javascript Array Into a Comma Separated String
Some of you probably already knew this, but I only recently discovered this (accidentally) while building a wrapper around Postgresql …
How To Paginate An Array In Javascript
I was recently tasked with implementing pagination for an array of values (in some instances, over 2400 of them) and instead of using an …