Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Lodash _.stubString()Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The Lodash _.stubString() method is used to create an empty string.

Syntax:

_.stubString()

Parameters: This method does not accept any parameter.  

Return Value: This method returns an empty string.

Example 1:

Javascript




// Requiring the lodash library  
const _ = require("lodash");            
    
// Use of _.stubString() method 
// to create an empty String
let gfg = _.stubString(); 
        
// Printing the output  
console.log(gfg);


Output :

""

Example 2:

Javascript




// Requiring the lodash library  
const _ = require("lodash");            
    
// Use of _.stubString() method 
// to create 5 empty String
let gfg = _.times(5, _.stubString); 
        
// Printing the output  
console.log(gfg);


Output :

["", "", "", "", ""]
My Personal Notes arrow_drop_up
Last Updated : 09 Sep, 2020
Like Article
Save Article
Similar Reads
Related Tutorials