//"".padStart(length, fillerString);
//"".padEnd(length, fillerString);
console.log("hell".padEnd(8, "0p"));
//hell0p0p
console.log("FF".padStart(8, "0"));
//000000FF
const string = "Hello";
//Padding adds pretext or suffix to string until given size is reached
console.log(string.padStart(8, "hi")); //adds prefix at start: hihHello
console.log(string.padEnd(9, "hi")) //adds suffix at end: Hellohihi
const str1 = 'Breaded Mushrooms';
console.log(str1.padEnd(25, '.'));
// expected output: "Breaded Mushrooms........"
const str2 = '200';
console.log(str2.padEnd(5));
// expected output: "200 "