String.prototype.padEnd()の使い方

2021年10月21日

構文
str.padEnd(targetLength [, padString])
String で、 targetLength で指定された長さにするために、
padString を現在の str の末尾に適用したものです。
使用例

const strA = 'Take Out';
console.log(strA.padEnd(15, '*'));

const strB = '345';
console.log(strB.padEnd(5));

結果
> “Take Out*******"
> “345 “

JavaScript

Posted by arkgame