What is reverse in javascript?

 array reverse method javascript:

 

reverse() method returns a new array with reverse value means the first value will be in the last place and the last value place with first place and it's changing the original array.

Syntax of reverse method:

array.reverse(target, start, end)

 

reverse example in javascript:

 

const colors = ["Red", "blue", "Black", "Orange", "White", "Coffee", "Green"];

console.log(colors);

// Array ["Red", "blue", "Black", "Orange", "White", "Coffee", "Green"]

 

const reverseColors = colors.reverse();

console.log(reverseColors);

// Array ["Green", "Coffee", "White", "Orange", "Black", "blue", "Red"]

 

console.log(colors);

// Array ["Green", "Coffee", "White", "Orange", "Black", "blue", "Red"]




No comments:

Note: Only a member of this blog may post a comment.

Copyright Reserved to Anything Learn. Powered by Blogger.