Showing Post From Algorithms

How to Chunk an Array with JavaScript

In this article, we’ll explore another common interview question for JavaScript developers – Chunk an Array. Now, like all of these interview questions, this one is not so complicated.

Read more

JavaScript Interview Question – Steps.js

In this article, we have another fun algorithm challenge: steps. It can be a little tricky if you haven’t seen it before, especially since the spaces must be logged to the console.

Read more

Three Simple Algorithms with JavaScript

You might have seen some of these algorithm challenges before, but that’s okay, we’re offering a few solutions to each of them, to help give you a better understanding of them and enhance your problem-solving abilities for other algorithms you might come across in the future.

Read more

Check if Strings are Palindromes with JavaScript

A palindrome is a word, phrase, or sequence that reads the same backward as forward. If you’ve learned how to reverse a string (if you haven’t, we wrote an article involving it here), then a straight-forward, easy solution to this problem might come instantly to mind.

Read more