count()

書式

number = booksObject.count()

説明

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

目次に戻る