Published Feb 26 2019
⚠️⚠️ JUST A FEW HOURS LEFT to JOIN THE 2023 BOOTCAMP ⚠️⚠️
The purpose of string padding is to add characters to a string, so it reaches a specific length.
padStart()
can be used to add characters at the beginning of a string.
padStart(targetLength [, padString])
Sample usage:
padStart() | |
---|---|
‘test’.padStart(4) | ‘test’ |
‘test’.padStart(5) | ’ test’ |
‘test’.padStart(8) | ’ test’ |
‘test’.padStart(8, ‘abcd’) | ‘abcdtest’ |
Also see padEnd()
.
I wrote an entire book on this topic 👇
I also got a super cool course 👇
© 2023 Flavio Copes
using
Notion to Site
Interested in solopreneurship?