🚀 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 💪

How to filter out array elements in JS

The built-in array function filter will help you filter out the unwanted elements from the array and return a new array consisting only of suitable items. To work correctly, the filter function accepts a parameter called “filtering function” or “filtering predicate”....

May 18, 2022 Â· 2 min Â· Coderslang Master

How to iterate over the array in JavaScript with forEach

Iterating over the elements of the array in JavaScript is a very common task. In this tutorial you’ll learn how to use the built-in array function forEach to go over all array elements....

May 17, 2022 Â· 2 min Â· Coderslang Master

What is the --save option for npm install

The --save option for npm install or npm i allows you to add the npm module you’re installing to the file package.json. This way it’ll become one of the project dependencies and will be automatically installed the next time you run npm install....

May 9, 2022 Â· 1 min Â· Coderslang Master

What is the difference between ~ and ^ in package.json?

Node package manager supports semantic versioning. To take full advantage of it, you can use the symbols tilde(~) or caret(^). Tilde(~) means approximately equivalent to version. "moment": "~2.29.1" In this example npm install will pick up the latest release of the module moment starting from 2....

February 19, 2022 Â· 1 min Â· Coderslang Master

Check for an empty value in JavaScript

When I started learning JS, one of the most powerful tools I discovered, was the ability to check if a variable is empty. My definition of emptiness was hardly a scientific one as I didn’t mean to check if it was defined or not....

February 8, 2022 Â· 1 min Â· Coderslang Master

Get random integer in a range using JavaScript

Similarly to generating a random float number within the specific range, you can write a function to get a random integer with a range. function getRandomIntegerInRange(min, max) { return Math.floor(Math.random() * (Math....

February 7, 2022 Â· 1 min Â· Coderslang Master

How to prepend a value to the beginning of a JS array

To add a new value to the beginning of the JS array, you can use the function Array.unshift. Here’s how it works. ...

February 6, 2022 Â· 1 min Â· Coderslang Master

Loose equality in JavaScript

Loose equality in JS in a powerful tool that allows you to loosely compare different values. If the types of the values don’t match, JavaScript will do a typecast (most often to a string type) and then do the comparison....

February 5, 2022 Â· 1 min Â· Coderslang Master

Rules for comparing numbers in JavaScript

Nothing can be simpler than comparing two numbers. However, there are some details that you need to know about comparing numbers in JS. ...

February 4, 2022 Â· 1 min Â· Coderslang Master

Zero and Minus Zero in JavaScript

In JavaScript, there are 2 different zeros. A regular 0 is a bit different from -0 in JS. ...

February 3, 2022 Â· 1 min Â· Coderslang Master