Lodash - reverse method



Syntax

_.reverse(array)

Reverses array so that the first element becomes the last, the second element becomes the second to last, and so on.

Arguments

  • array (Array) − The array to modify.

Output

  • (Array) − Returns array.

Example

var _ = require('lodash');
var list = [1, 2, 3, 4, 5, 6, 7];

var result = _.reverse(list);
console.log(result);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

[
   7, 6, 5, 4,
   3, 2, 1
]
lodash_array.htm
Advertisements