El método _.toPairsIn() se usa para crear una array de pares clave-valor de string enumerables propios y heredados para un objeto que puede ser consumido por la función _.fromPairs(). Si un objeto es un mapa o conjunto, se devuelven sus entradas.
Sintaxis:
_.toPairsIn(object)
Parámetros: este método acepta un solo parámetro como se mencionó anteriormente y se describe a continuación:
- objeto: Este parámetro contiene el objeto a consultar.
Valor devuelto: este método devuelve la array de pares clave-valor.
Ejemplo 1:
Javascript
// Requiring the lodash library const _ = require("lodash"); function Fb() { this.id = 2045; this.username = 'fb_myself'; this.password = 'fb1234'; } Fb.prototype.email = 'myself@gmail.com'; // Use of _.toPairsIn() method console.log(_.toPairsIn(new Fb));
Producción:
[ [ 'id', 2045 ], [ 'username', 'fb_myself' ], [ 'password', 'fb1234' ], [ 'email', 'myself@gmail.com' ] ]
Ejemplo 2:
Javascript
// Requiring the lodash library const _ = require("lodash"); function Gfg() { this.x = 1; this.y = 2; } Gfg.prototype.z = 3; // Use of _.toPairsIn() method console.log(_.toPairsIn(new Gfg));
Producción:
[ ['x', 1], ['y', 2], ['z', 3] ]
Ejemplo 3:
Javascript
// Requiring the lodash library const _ = require("lodash"); var GfG = { "Geek": "GFG" } // Use of _.toPairsIn() method console.log(_.toPairsIn(GfG));
Producción:
[ [ 'Geek', 'GFG' ] ]