Non-traditional Dev

Non-traditional Dev

Follow
homeMost Popular PostsSponser this Blogbadgesnewsletter
Tag

JavaScript

#javascript

More content

Read more stories on Hashnode


Articles with this tag

Resizing Elements with Confidence: How to Fix ResizeObserver API

Feb 16, 20234 min read 1.1K views

The ResizeObserver API is a relatively new feature in JavaScript that allows developers to detect changes in the size of an element on a web page....

Resizing Elements with Confidence: How to Fix ResizeObserver API

The Power of Maybe in TypeScript

Aug 31, 20224 min read 6.4K views

In a perfect world, every function and every API we work with would have one clear type that always gets returned. Unfortunately, we don't live in a...

The Power of Maybe in TypeScript

An Intro to Solid.js for React Developers

May 12, 20226 min read 13.3K views

A quick introduction of the similarities, differences, and gotchas of solid.js for React developers · In the 2021 state of JS survey result, solid.js, in...

An Intro to Solid.js for React Developers

Modernizing JavaScript Code: CSV/Table Manipulation

Feb 25, 20226 min read 474 views

In previous posts, we have worked through some of the code examples of the book Functional JavaScript. I'm going to go over the final example from...

Modernizing JavaScript Code: CSV/Table Manipulation

Using JavaScript Proxies to Make Sorting Arrays Safe

Feb 4, 20225 min read 1.8K views

(And why you shouldn't do it) · Array methods can be grouped into two categories: mutating and non-mutating methods. Methods such as push, pop, and...

Using JavaScript Proxies to Make Sorting Arrays Safe

Using a Trie Data Structure in JavaScript

Jan 20, 20224 min read 1.7K views

Since the beginning of the year, I have been working on my personalized CS degree. Currently, I am working on MIT Course 6-001, which is an intro to...

Using a Trie Data Structure in JavaScript