/* The padEnd() method pads the current string with a given string
(repeated, if needed) so that the resulting string reaches a given length.
The padding is applied from the end of the current string. */
const str1 = 'Breaded Mushrooms';
console.log(str1.padEnd(25, '.'));
// expected output: "Breaded Mushrooms........"
const str2 = '200';
console.log(str2.padEnd(5));
// expected output: "200 "
const str1 = '123';
str1.padEnd(3, '0'); // "12300"
str1.padEnd(3, '*'); // "123**"