「JavaScript」String.prototype.padEnd()で文字列の末尾に指定した文字列を追加する

書式
str.padEnd(targetLength [, padString])
引数
targetLength
現在の文字列の延長後に返される文字列の長さです。
padString
現在の文字列を延長するための文字列です。この文字列が targetLength に収まらないほど長い場合は、
左書きの言語では最も左の部分が、右書きの言語では最も右の部分が使用され、残りは切り捨てられます。
戻り値
String で、 targetLength で指定された長さにするために、 padString を現在の str の末尾に適用したものです。

使用例

const strA = 'study';
console.log(strA.padEnd(10, '#'));

const strB = '200';
console.log(strB.padEnd(5,'***'));

実行結果
“study#####"
“200**"

JavaScript

Posted by arkgame