El objeto del método Lodash _.functions ()
Sintaxis:
_.functions( object )
Parámetros:
- objeto: Este es el objeto a inspeccionar.
Valor devuelto: este método devuelve una array de propiedades.
Ejemplo 1:
Javascript
// Defining Lodash variable const _ = require('lodash'); // Defining object function function GFGfunc() { this.Geek1 = _.constant('gfg'); this.Geek2 = _.constant('gfg'); } // Use of function console.log(_.functions(new GFGfunc));
Producción:
[ 'Geek1', 'Geek2' ]
Ejemplo 2:
Javascript
// Defining Lodash variable const _ = require('lodash'); // Defining object function function GFGfunc() { this.Geek1 = _.constant('gfg'); this.Geek2 = _.constant('gfg'); } GFGfunc.prototype.Geek3 = _.constant('gfg'); // Use of function console.log(_.functions(new GFGfunc));
Producción:
[ 'Geek1', 'Geek2' ]
Nota: npm instala lodash