Array Methods Explained As Emojis
Last updated
Was this helpful?
Last updated
Was this helpful?
Array.push()
Adds one or more elements to the end of an array. Or grows a farm.
_Documentation on _
Array.from()
Creates a new array from an array-like or iterable object. Or separates some wild animals.
_Documentation on _
Array.concat()
Merges two or more arrays into a single new one. Or brings different worlds together.
_Documentation on _
Array.every()
Checks if all elements of an array pass the test. Or detects intruders.
Array.fill()
Replaces the elements of an array from start to end index with a given value. Or grows some trees.
Array.filter()
Creates a new array containing all elements passing the test. Or predicts your relationship status.
Array.flat()
Creates a new array containing all elements from all sub-arrays up to a given depth. Or cracks any safe.
Array.includes()
Checks if an array contains a specific element. Or finds the secret sweet tooth.
Array.join()
Concatenates all array elements to one single string, using an optional separator. Or builds local area networks.
Array.map()
Calls a function on each array element and returns the result as new array. Or feeds all hungry monkeys.
Array.reverse()
Reverses the order of elements in an array. Or decides the outcome of a race.
Note that this method is destructive, it modifies the original array. So after line 2 of this example rabbitWins
and hedgehogWins
both have the value ["๐ฆ", "๐"]
Array.slice()
Creates a new array from copying a portion of an array defined by start and end index. Or cheats in an exam.
Array.some()
Tests if at least one element of an array passes the test. Or finds if some participants of your meeting forgot to mute their mic.
Array.sort()
Sorts all elements of an array. Or organizes your bookshelf again.
Array.splice()
Removes, replaces or adds elements to an array. Or changes the weather.
Array.unshift()
Adds one or more elements to the beginning of an array. Or couples a loco.
_Documentation on _
_Documentation on _
* You might wonder, why the string length is divided by two here. The reason is that emojis actually are represented by a pair of code points, also known as a surrogate pair.
Try "๐ฉ".length
in your console and see for yourself. More information in .
_Documentation on _
_Documentation on _
_Documentation on _
_Documentation on _
_Documentation on _
_Documentation on _
_Documentation on _
_Documentation on _
_Documentation on _
_Documentation on _
_Documentation on _