「JavaScript」join()で配列オブジェクトの要素を連結するサンプル

2021年2月9日

書式
Array.prototype.join.call(arguments);
使用例

function func(a, b, c,d) {
  var result = Array.prototype.join.call(arguments);
  console.log(result); 
}
func(1001, 'yamada', 21,true);
func(1002, 'uemura', 31,false);
func(1003, 'oohashi', 41,true);

実行結果
> “1001,yamada,21,true"
> “1002,uemura,31,false"
> “1003,oohashi,41,true"

JavaScript

Posted by arkgame