count()

書式

number = booksObject.count()

説明

count()メソッドはbookオブジェクトの総数を返します。count()はlengthと同じ値になります。
1
2
var b=app.books;
alert(b.count());

目次に戻る