Array
Test Array
Array.isArray(array)This does not work to test if its an array.
if (array) {
// empty arrays evaluate as false
}
if (array && array.length > 0) {
// you may still want to capture the array
}Clone an array
const clone = array.slice(0);Iterate keys in an array (for...in)
(for...in) const array = ['x', 'y', 'z'];
for (const key in array) {
console.log(key);
}https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...in
Iterate values in an array (for...of)
(for...of)https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of
Appending/merging arrays together
Reuse Array:
New Array:
Last updated
Was this helpful?