With padEnd
, it adds characters to the end of a string so it reaches a specified length. This is great for us to add some padding to display our strings in a tabular format. Isn't it so much easier to read, yay πΉ
// Display String in Tabular Format with padEnd
// β
'Day: Monday' + 'Drink: π΅'
'Day: Saturday' + 'Drink: πΉ'
// β
'Day: Monday'.padEnd(20) + 'Drink: π΅'
'Day: Saturday'.padEnd(20) + 'Drink: πΉ'
padEnd Parameters
The padEnd
accepts 2 parameters:
string.padEnd( <length>, <character>)
1st Parameter: Length
This is the final length of your result string. It is required.
Let's say you begin with a string that has 3 characters. And you set the length to be 5 characters. That means, padEnd
will pad it with 2 characters so the total length meets your target length of 5 characters.
Here's an example. I'm denoting the space character with Β·
to show you the padded space.
'abc'.padEnd(5);
// abcΒ·Β·
2nd Parameter: Character
This is an optional parameter. As you see from above, the default padded character is an empty space. However, you might want to pad it with a different character. No problem! Just pass it here.
'hi'.padEnd(10, '!');
// 'hi!!!!!!!!'
Tabular Format only works with Monospace Font
So in my example of using padEnd
to create table formatted string. One thing to note is that it only works with Monospace Font.
A monospaced font, also called a fixed-pitch, fixed-width, or non-proportional font, is a font whose letters and characters each occupy the same amount of horizontal space.
By Garethlwalt - Own work, CC BY 3.0, Link
Fonts such as "Roboto" or "Monaco" are Monospace Font. Meaning each character will have the same width. Whereas fonts such as "Times New Roman" are not monospace. They are proportional, so each character will have different widths. And since each character has a different width, it would be hard to create the Table format using padEnd
.
padEnd vs padStart
The purpose of string padding is to add characters to a string, so the outcome has a specific length.
padEnd
adds characters at the end of the string. Whereas padStart
adds characters at the start of the string
padEnd
'hello '.padEnd(10, 'π');
// 'hello ππ'
padStart
' hello'.padStart(10, 'π');
// 'ππ hello '
Watch out! padEnd with emojis
If you're padding with emojis, you might run into this issue.
'hello '.padEnd(11, 'π');
// 'hello πποΏ½'
Notice the last "π" is not displayed. But instead "οΏ½" is shown. Well, that's because emojis are typically made up of 2 characters.
'π'.length === 2 // true
So if you're padding with emojis, just be mindful that the emoji might be cut off if you don't provide it enough length.
Community Input
@2alin: Just something to add: to have a tabular style use, the font should be mono-space and HTML render will remove any extra space; which makes such application important mainly in information displayed in the terminal.
@Cilly_Boloe: padEnd and padStart example β link
Resources
- MDN Web Docs: String.prototype.padEnd()
- Learn JavaScript ES 2017: String padding β padStart & padEnd
- Exploring JS: String Padding
- Flaviocopes: The String padEnd method
- String padding with padStart and padEnd
- Alligator: padStart and padEnd String Methods in JavaScript
- tc39: ECMAScript spec proposal for String.prototype.{padStart,padEnd}
Thanks for reading β€
Say Hello! Instagram | Twitter | Facebook | Blog | SamanthaMing.com
Top comments (2)
Hello, thanks for article!
What about browser support?
Should have included that π
Supported by all major browsers, except for IE π but thereβs a polyfill you can use π
More info here: developer.mozilla.org/en-US/docs/W...