array.toString()メソッドは、配列の全要素の値を、カンマ,
で繋ぎ、1つの文字列として返すメソッド。
構文
array.toString()
戻り値
配列の全要素の値をカンマ,
で繋いだ1つの文字列。
サンプル
<script type="text/javascript">
var $sampleArray = new Array( '要素1', '要素2', '要素3' );
var $sampleArrayToString = $sampleArray.toString();
document.write( '$sampleArrayToString: ' + $sampleArrayToString + '<br />' );
document.write( '$sampleArrayToStringのデータ型: ' + typeof( $sampleArrayToString ) + '<br />' );
document.write( '$sampleArray: ' + $sampleArray + '<br />' );
document.write( '$sampleArrayのデータ型: ' + typeof( $sampleArray ) + '<br />' );
</script>
var $sampleArray = new Array( '要素1', '要素2', '要素3' );
var $sampleArrayToString = $sampleArray.toString();
document.write( '$sampleArrayToString: ' + $sampleArrayToString + '<br />' );
document.write( '$sampleArrayToStringのデータ型: ' + typeof( $sampleArrayToString ) + '<br />' );
document.write( '$sampleArray: ' + $sampleArray + '<br />' );
document.write( '$sampleArrayのデータ型: ' + typeof( $sampleArray ) + '<br />' );
</script>
↓↓↓出力結果↓↓↓