6

Top 10 Must Know JavaScript Functions

 2 years ago
source link: https://dev.to/thedailytechtalk/top-10-must-know-javascript-functions-1ipm
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Top 10 Must-Know JavaScript Functions

Please check out full article here

1 filter()

This function filters an array based on the condition you provide and it returns a new array which contains items which satisfy those conditions.

filter()

const temperatures = [10, 2, 30.5, 23, 41, 11.5, 3];

const coldDays = temperatures.filter(dayTemperature => {
    return dayTemperature < 20;
});

console.log("Total cold days in week were: " + coldDays.length); // 4
Enter fullscreen modeExit fullscreen mode

2 map()

Function map() is a very simple, it loops over an array and convert each item into something else.

const readings = [10, 15, 22.5, 11, 21, 6.5, 93];
const correctedReadings = readings.map(reading => reading + 1.5);
console.log(correctedReadings); // gives [11.5, 16.5, 24, 12.5, 22.5, 8, 94.5]
Enter fullscreen modeExit fullscreen mode

3 some()

some() is very similar to filter() , but some() returns boolean instead.

const animals = [
    {
        name: 'Dog',
        age: 2
    },

    {
        name: 'Cat',
        age: 8
    },

     {
        name: 'Sloth',
        age: 6
    },
];

if(animals.some(animal => {
    return animal.age > 4
})) {
    console.log("Found some animals!")
}
Enter fullscreen modeExit fullscreen mode

4 every()

every() is also very similar to some() , but every() true only if every single element in array satisfy our condition.

const isBelowThreshold = (currentValue) => currentValue < 40;

const array1 = [1, 30, 39, 29, 10, 13];

console.log(array1.every(isBelowThreshold));   // true
Enter fullscreen modeExit fullscreen mode

5 shift()

The shift() method removes the first element from an array and returns removed element. This method changes the length of the array.

const items = ['meat', 'carrot', 'ham', 'bread', 'fish'];
items.shift()
console.log(items); // ['carrot', 'ham', 'bread', 'fish']
Enter fullscreen modeExit fullscreen mode

6 unshift()

Just like shift() method removes the first element from an array unshift() adds it. This method changes the length of the array and returns the new length of the array as result.

const items = ['milk', 'fish'];
items.unshift('cookie')
console.log(items); // ['cookie', 'milk', 'fish']
Enter fullscreen modeExit fullscreen mode

7 slice()

The slice() method returns a shallow copy of a portion of an array into a new array object selected from start to end (end not included) where start and end represent the index of items in that array. The original array will not be modified.

let message = "The quick brown fox jumps over the lazy dog";
let startIndex = message.indexOf('brown');
let endIndex = message.indexOf('jumps');
let newMessage = message.slice(startIndex, endIndex);
console.log(newMessage); // "brown fox "
Enter fullscreen modeExit fullscreen mode

8 splice()

splice() below start at index 2 (the third place, count starts from 0!! ) of the array, and remove one item.
In our array that would mean that "rabbit" got removed. splice() will return new array as result.

const animals = ['dog', 'cat', 'rabbit', 'shark', 'sloth'];
animals.splice(2, 1);
console.log(animals); // ["dog", "cat", "shark", "sloth"]
Enter fullscreen modeExit fullscreen mode

9 includes()

includes() will check every item in the array, and check if any of them includes our condition. It will return boolean.

const array1 = [1, 2, 3];

console.log(array1.includes(2));
// expected output: true

const pets = ['cat', 'dog', 'bat'];

console.log(pets.includes('cat'));  //  true

console.log(pets.includes('at'));  //  false
Enter fullscreen modeExit fullscreen mode

10 reverse()

reverse() method reverses an array. Be careful since reverse() is destructive which means it changes the original array.

const array1 = ['one', 'two', 'three', 'four'];
console.log(array1);  //  ["one", "two", "three", "four"]

const reversed = array1.reverse();
console.log(reversed);  //  ["four", "three", "two", "one"]
Enter fullscreen modeExit fullscreen mode

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK