Syntax Of Lodash last method
_.last(array)
Lodash last method gets the last element of the array.
Arguments
- array (Array) − The array to query.
Output
- (*) − Returns the last element of array.
Example
var _ = require('lodash'); var list = [1, 2, 3, 4, 5, 6]; var result = _.last(list,'~') console.log(result);
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
6
Next Topic – Click Here
Pingback: Lodash - join method - Adglob Infosystem Pvt Ltd