Lodash – ary method

  • Post author:
  • Post category:Lodash
  • Post comments:1 Comment
Lodash - ary method

Syntax Of Lodash ary method

_.ary(func, [n=func.length])

Lodash ary method creates a function that invokes func, with up to n arguments, ignoring any additional arguments.

Arguments

  • func (Function) โˆ’ The function to cap arguments for.
  • [n=func.length] (number) โˆ’ The arity cap.

Output

  • (Function) โˆ’ Returns the new capped function.

Example

var _ = require('lodash');
var result = _.map(['6', '8', '10'], _.ary(parseInt, 1));
console.log(result);

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

Command

\>node tester.js

Output

[ 6, 8, 10 ]

Next Topic – Click Here

This Post Has One Comment

Leave a Reply