VOOZH about

URL: https://www.geeksforgeeks.org/javascript/underscore-js-_-partial-function/

⇱ Underscore.js _.partial() Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Underscore.js _.partial() Function

Last Updated : 24 Nov, 2021
The _.partial() function is used to apply partially a function by filling in any number of its arguments, without changing its dynamic value. Syntax:
_.partial(function, *arguments)
Parameters: This function accept two parameters as mentioned above and described below:
  • function: The function that need to be executed.
  • arguments: This parameter needs to add some symbols between elements.
Return Value: This function returns the result of partially executed function. Below examples illustrate the _.partial() Function in Underscore.js: Example 1: Output: 👁 Image
Example 2:
Output: 👁 Image
Comment