Array_Methods Flashcards
array.length
array[0]
find item in array. this way you can also modify item in array eg: array[0] = “hans”.
array.indexOf(“item”)
returns index of item
array.push(“item”)
add item to end of array
array.pop()
removes item at end of array
array.unshift(“item”)
add item to beginning of array
array(shift)
removes item from beginning of array
array.splice(1, 3)
removes item(s) from array, whereby first argument says at which index to start removing and second argument is number of items to remove.
for (const item of items) {
}
array.map(function)
function double(number) {
return number * 2;
}
const numbers = [5, 2, 7, 6];
const doubled = numbers.map(double);
console.log(doubled); // [ 10, 4, 14, 12 ]
array.filter(function)
function isLong(city) {
return city.length > 8;
}
const cities = [“London”, “Liverpool”, “Totnes”, “Edinburgh”];
const longer = cities.filter(isLong);
console.log(longer); // [ “Liverpool”, “Edinburgh” ]
string.split(“,”)
create array from string splitting by “,”.
const data = “Manchester,London,Liverpool,Birmingham,Leeds,Carlisle”;
const cities = data.split(“,”);
console.log(cities)
//[“Manchester”, “London”, “Liverpool”, “Birmingham” , “Leeds”, “Carlisle”]
array.join(“,”)
converts array to string using , as separator.