Método Lodash _.stubObject()

El método _.stubObject() se usa para crear y devolver un objeto vacío.

Sintaxis:

_.stubObject()

Parámetros: este método no acepta ningún parámetro.

Valor devuelto: Devuelve un objeto vacío.

Ejemplo 1:

Javascript

// Requiring the lodash library  
const _ = require("lodash");            
    
// Using the _.stubObject() method 
// to create an empty object
let empty_obj = _.stubObject(); 
        
// Printing the output  
console.log(empty_obj);

Producción:

Object {}

Ejemplo 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");            
    
// Using the _.stubObject() method
// to create 5 empty Object
let empty_objs = _.times(5, _.stubObject); 
        
// Printing the output  
console.log(empty_objs);

Producción:

[Object {}, Object {}, Object {}, Object {}, Object {}]

Publicación traducida automáticamente

Artículo escrito por jana_sayantan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *