read an array backwards javascript code example
Example 1: js reverse
const array1 = ['one', 'two', 'three'];
console.log('array1:', array1);
//["one", "two", "three"]
const reversed = array1.reverse();
console.log('reversed:', reversed);
//["three", "two", "one"]
// Careful: reverse is destructive -- it changes the original array.
console.log('array1:', array1);
//["three", "two", "one"]
Example 2: reverse an array javascript
const reversed = array1.reverseconst reversed = array1.reverse();
console.log('reversed:', reversed);
// expected output: "reversed:" Array ["three", "two", "one"]();
console.log('reversed:', reversed);
// expected output: "reversed:" Array ["three", "two", "one"]const reversed = array1.reverse();
console.log('reversed:', reversed);
// expected output: "reversed:" Array ["three", "two", "one"]