String.prototype.padStart()
The padStart() method pads the
current string with another string (multiple times, if needed) until the resulting
string reaches the given length. The padding is applied from the start of the
current string.
Syntax
padStart(targetLength)
padStart(targetLength, padString)
Parameters
targetLength- : The length of the resulting string once the current
strhas been padded. If the value is less thanstr.length, thenstris returned as-is.
- : The length of the resulting string once the current
padStringoptional- : The string to pad the current
strwith. IfpadStringis too long to stay within thetargetLength, it will be truncated from the end. The default value is the unicode "space" character (U+0020).
- : The string to pad the current
Return value
A String of the specified targetLength with
padString applied from the start.