JavaScript中数组对象的属性是什么?
Array对象使您可以将多个值存储在单个变量中。它存储相同类型元素的固定大小的顺序集合。
以下是Array对象的属性列表-
序号 | 属性和说明 |
1 | 构造函数 返回对创建对象的数组函数的引用。 |
2 | index 该属性表示字符串中匹配项的从零开始的索引。 |
3 | 输入 此属性仅存在于由正则表达式匹配创建的数组中。 |
4 | length 反映数组中元素的数量。 |
5 | prototype 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 : JavaBook author is : John
Book price is : 300
以上是 JavaScript中数组对象的属性是什么? 的全部内容, 来源链接: utcz.com/z/340830.html