Joe Attardi
Joe Attardi ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป

Joe Attardi ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป

Follow
Follow
homebadges
Tag

JavaScript

#javascript

More content

Read more stories on Hashnode


Articles with this tag

Fun with arrays

Oct 25, 20234 min read

In this article, we'll look at some weird quirks with JavaScript arrays to learn a little more about how they work under the hood. An array is a...

Fun with arrays

Understanding error handling in Promise chains

Jul 7, 20233 min read

Promise chains You can create a chain of Promises by returning new Promises from a then handler. Here's a simple example that chains 3 promises...

Understanding error handling in Promise chains

Customizing `JSON.parse` and `JSON.stringify`

Apr 27, 20233 min read

The JSON.stringify and JSON.parse functions are handy for converting objects to JSON strings and back again. However, not all properties of an object...

Customizing `JSON.parse` and `JSON.stringify`

How many ways can we reverse an Array?

Nov 23, 20223 min read

There's a Stage 3 proposal to add several array methods including Array.prototype.toReversed, which will create a reversed copy of the array. This...

How many ways can we reverse an Array?

Comparing `const` declarations and immutable objects

Sep 1, 20226 min read

Way back in my Java days, when interviewing candidates, I would often ask the candidate to explain the meaning of the final keyword. Many times I...

Comparing `const` declarations and immutable objects

Promise Tips: When do I need to create my own Promise instance?

Jan 28, 20224 min read

It's not always needed. ยท Promises are pretty ubiquitous these days, but sometimes Promise based code is more complex that it needs to be. Consider this...

Promise Tips: When do I need to create my own Promise instance?