JavaScript の文字列の末尾に指定の文字列を追加する方法
JavaScript の文字列の末尾に指定の文字列を追加する方法としては、以下の 2 つの方法があります。
1, 文字列連結を使用する
const str = "Hello";
const appendStr = " World";
str = str + appendStr;
console.log(str); // "Hello World"
2, 文字列メソッド concat()
を使用する
const str = "Hello";
const appendStr = " World";
str = str.concat(appendStr);
console.log(str); // "Hello World"