Saturday, July 11, 2026
HomeLanguagesJavascriptLodash _.padStart() Method

Lodash _.padStart() Method

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

Syntax:

_.padStart( [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 examples illustrate the Lodash _.padStart() method in JavaScript:

Example 1:

Javascript




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


Output:

'  GFG'
'##1234'

Example 2:  

Javascript




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


Output:

'---GFG'
'1234'
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6901 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12111 POSTS0 COMMENTS
Shaida Kate Naidoo
7021 POSTS0 COMMENTS
Ted Musemwa
7263 POSTS0 COMMENTS
Thapelo Manthata
6978 POSTS0 COMMENTS
Umr Jansen
6968 POSTS0 COMMENTS