Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

String.prototype.concat()

concat() メソッドは、文字列に別の文字列を連結して、新しい文字列として返します。

構文

str.concat(string2[, string3, ..., stringN])

引数

string2...stringN
Strings と連結する文字列。

戻り値

提供された文字列を組み合わせたテキストを含む新しい文字列。

説明

concat は 1 つまたは複数の文字列を連結し、新しい文字列を返します。1 つの文字列におけるテキストへの変更は他の文字列に影響を与えません。

例: concat の使用

複数の文字列を連結してコンソールに表示する例を以下に示します。

var str = "こんにちは、";
var name = "鈴木さん";

str = str.concat(name, "。今日はいい天気ですね。");
console.log(str); //こんにちは、鈴木さん。今日はいい天気ですね。

パフォーマンス

パフォーマンス上の理由により、このメソッドは用いず、代わりに assignment operators   (+ または +=) を使用する事を強くお勧めします。

仕様

仕様 ステータス コメント
ECMAScript 3rd Edition (ECMA-262) 標準 初期定義。JavaScript 1.2 で実装。
ECMAScript 5.1 (ECMA-262)
String.prototype.concat の定義
標準  
ECMAScript 2015 (6th Edition, ECMA-262)
String.prototype.concat の定義
標準  
ECMAScript 2017 Draft (ECMA-262)
String.prototype.concat の定義
ドラフト  

ブラウザ実装状況

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本サポート (有) (有) (有) (有) (有)
機能 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本サポート (有) (有) (有) (有) (有) (有)

関連項目

ドキュメントのタグと貢献者

 このページの貢献者: YuichiNukiyama, teoli, ethertank, Mgjbot, Potappo
 最終更新者: YuichiNukiyama,