Array.prototypeプロパティは、Arrayオブジェクトのプロトタイプを参照するプロパティ。
Arrayオブジェクトにユーザー定義メソッドを追加するときなどに使う。
構文
Array.prototype
サンプル
最大値取得
<script type="text/javascript">
function arrayMax( ){
var $index;
var $max = this[0];
for ( $index = 1; $index < this.length; $index++ ) {
if ( $max < this[$index]) {
$max = this[$index];
}
}
return $max;
}
Array.prototype.max = arrayMax;
var $sampleArray = new Array( 55, 61, 22, 80, 71 );
document.write( '最大値は、' + $sampleArray.max() );
</script>
function arrayMax( ){
var $index;
var $max = this[0];
for ( $index = 1; $index < this.length; $index++ ) {
if ( $max < this[$index]) {
$max = this[$index];
}
}
return $max;
}
Array.prototype.max = arrayMax;
var $sampleArray = new Array( 55, 61, 22, 80, 71 );
document.write( '最大値は、' + $sampleArray.max() );
</script>
↓↓↓出力結果↓↓↓