The underscore.js
library provides a number of utility functions that make working with arrays, objects, and functions easier in JavaScript. One such utility is the functions
function, which returns an array of all the function names (methods) found on an object.
Here's an example of how to use the functions
function from the underscore library:
index.tsx502 chars24 lines
In this example, we use the functions
function to get an array of the names of the methods defined on the car
object (i.e. "drive" and "park"). The console.log
statement then outputs this array to the console.
By using this function, we can easily create higher-order functions that work with objects and their methods, making our code more functional, modular and reusable.
gistlibby LogSnag