How does the includes() method work on a JavaScript Array of Objects??

Earlier this week I wrote about how the JavaScript includes() method works on a string.

From: Jeffry Houser's Blog

How does the includes() method work on JavaScript Arrays?

Earlier this week I wrote about how the JavaScript includes() method works on a string.

From: Jeffry Houser's Blog

How does the includes() method work on JavaScript Strings?

I have a discussion with another developer about a section of code that had the use of the includes method on a string, and there was some confusion about what it did, and I thought I'd write this full blog post.

From: Jeffry Houser's Blog

More on Date Conversions

I was recently working on an app where the user was entering one date, but the date was turning into something else.

From: Jeffry Houser's Blog

How do I Publish my own Docker Image?

In the initial rendition of the LearnWith book series, I gave instructions on how to create a database and populate it with SQL, but left no instructions or details on how to set up or install a DB Server from scratch.

From: Jeffry Houser's Blog

Why would I use an underscore as an argument to an arrow function?

{ // do stuff } This is weird syntax; what does it mean? First, you can create an arrow function in a few different ways.

From: Jeffry Houser's Blog