Javascript Articles

Sorted By: Most Recent
Chris Cook Chris Cook
Updated on October 09, 2024

How to Check for Log Errors With Jest

There are two ways to check for log errors with the JavaScript testing framework Jest: jest.fn() or jest.spyOn(). Here’s how to do it, with code.  

Image: Shutterstock / Built In
Yordan Ramchev Yordan Ramchev
Updated on October 08, 2024

How to Auto Import Vue Components in JavaScript

Setting up on-demand auto importing for Vue components makes it easier to eliminate typos in import paths and reduces final production build size. Learn more.

Image: Shutterstock / Built In
Shahar Polak Shahar Polak
Updated on October 07, 2024

How to Stop a ForEach Loop in JavaScript

A JavaScript forEach loop is a control flow statement that iterates through arrays. It can be stopped by throwing an error. Learn more.

Image: Shutterstock / Built In
Jayanth Somineni Jayanth Somineni
Updated on September 27, 2024

How to Remove Duplicates From a JavaScript Array

When you need to remove duplicates from an array in JavaScript, consider these methods.

Image: Shutterstock / Built In
Michelle Wong Michelle Wong
Updated on September 13, 2024

Switch Case vs. If-Else in JavaScript Explained

Switch case and if-else offer two different approaches to writing conditional statements in JavaScript. Here’s how to determine which one to use.

Image: Shutterstock / Built In
Rakia Ben Sassi Rakia Ben Sassi
Updated on September 10, 2024

Compiler vs. Interpreter in Programming

Compilers and interpreters are used to convert a high-level language into machine code. However, there are differences between how and when they work.

Image: Shutterstock / Built In
Harshil Patel Harshil Patel
Updated on September 04, 2024

Quicksort Algorithm: An Overview

Quicksort is a sorting algorithm that uses a divide-and-conquer strategy to split and sort an array. It has a time complexity of O nlogn.

Image: Shutterstock / Built In
Ankit Malik Ankit Malik
Updated on August 09, 2024

Pascal Case vs. Camel Case Explained

Pascal case and camel case are two different casing styles used in programming for naming variables, class and type names. Learn the differences and other casing styles. 

Image: Shutterstock / Built In
Vishnu Satheesh Vishnu Satheesh
Updated on August 01, 2024

React Infinite Scroll: A Guide

Infinite scroll is a UX technique that allows users to continuously scroll on a web page without loading a new page. Here are three ways to implement it in React.

Image: Shutterstock / Built In
Nick Hodges Nick Hodges
Updated on June 11, 2024

Dependency Injection: Everything You Need to Know

Dependency injection is a technique in which you make the interactions between objects as minimal as possible through specific dependencies. Here’s what to know.  

Image: Shutterstock / Built In