_.padStart

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

Pads string on the left side if it's shorter than length. Padding characters are truncated if they exceed length.

Since

4.0.0

Arguments

  1. [string=''] (string): The string to pad.
  2. [length=0] (number): The padding length.
  3. [chars=' '] (string): The string used as padding.

Returns

(string): Returns the padded string.

Example

1
2
3
4
5
6
7
8
_.padStart('abc', 6);
// => '   abc'
  
_.padStart('abc', 6, '_-');
// => '_-_abc'
  
_.padStart('abc', 3);
// => 'abc'
doc_Lodash
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.