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

Related Articles

Lodash _.padEnd() Method

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

The _.padEnd() method is used to pad a string with another string until it reaches the given length. The padding is applied from the right end of the string. Padding characters are truncated if they exceed the length.

Syntax:

_.padEnd( [string = ''], [length = 0], [chars = ' '] )

Parameters: This method accepts three parameters as mentioned above and described below:

  • string: This parameter holds the string to the pad.
  • length: This parameter holds the length of the pad.
  • chars: This parameter holds the string used as padding.

Return Value: This method returns the padded string.

Below example illustrate the Lodash _.padEnd() method in JavaScript:

Example 1:

Javascript




// Requiring the lodash library  
const _ = require("lodash");  
       
// Use of _.padEnd() method 
console.log(_.padEnd('GFG', 5)); 
console.log(_.padEnd('1234', 6, '#')); 

Output:

'GFG  '
'1234##'

Example 2:  

Javascript




// Requiring the lodash library  
const _ = require("lodash");  
       
// Use of _.padEnd() method 
console.log(_.padEnd('GFG', 6, '-')); 
console.log(_.padEnd('1234', 3, '#')); 

Output:

'GFG---'
'1234'

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