JavaScript中数组对象的属性是什么?
Array对象使您可以将多个值存储在单个变量中。它存储相同类型元素的固定大小的顺序集合。
以下是Array对象的属性列表-
属性和说明
返回对创建对象的数组函数的引用。
该属性表示字符串中匹配项的从零开始的索引。
此属性仅存在于由正则表达式匹配创建的数组中。
反映数组中元素的数量。
prototype属性允许您向对象添加属性和方法。
示例
让我们看一个原型属性的例子
<html>
<head>
<title>JavaScript Array Object</title>
<script>
function book(title, author){
this.title = title;
this.author = author;
}
</script>
</head>
<body>
<script>
var myBook = new book("Java", "John");
book.prototype.price = null;
myBook.price = 300;
document.write("Book title is : " + myBook.title + "<br>");
document.write("Book author is : " + myBook.author + "<br>");
document.write("Book price is : " + myBook.price + "<br>");
</script>
</body>
</html>输出结果
Book title is : Java Book author is : John Book price is : 300
热门推荐
10 广西考试祝福语结婚简短
11 猪年祝福语简短小孩
12 元旦祝福语送长辈简短
13 恭喜二宝祝福语简短
14 祝福语暖心话简短
15 国庆中秋祝福语简短兄弟
16 朋友订婚的祝福语简短
17 送弟弟中秋祝福语简短
18 爱生日祝福语简短独特