Love beautiful code? We do too.
Phương thức array every trong Javascript trả về true nếu mỗi phần tử trong mảng này thỏa mãn hàm kiểm tra đã cho.
Cú pháp của nó như sau:
array.every(callback[, thisObject]);
Chi tiết tham số
thisObject − Đối tượng được sử dụng như là một this khi thực thi callback.
Trả về giá trị
Trả về true nếu mỗi phần tử trong mảng thỏa mãn hàm kiểm tra đã cho.
Khả năng tương thích
Phương thức này là một phần JavaScript bổ sung tới chuẩn ECMA-262. Để khiến nó làm việc, bạn thêm code sau vào phần trên cùng của script của bạn.
if (!Array.prototype.every)
{
Array.prototype.every = function(fun /*, thisp*/)
{
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
var thisp = arguments[1];
for (var i = 0; i < len; i++)
{
if (i in this && !fun.call(thisp, this[i], i, this))
return false;
}
return true;
};
}
<html>
<head>
<title>JavaScript Array every Method</title>
</head>
<body>
<script type="text/javascript">
if (!Array.prototype.every)
{
Array.prototype.every = function(fun /*, thisp*/)
{
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
var thisp = arguments[1];
for (var i = 0; i < len; i++)
{
if (i in this && !fun.call(thisp, this[i], i, this))
return false;
}
return true;
};
}
function isBigEnough(element, index, array) {
return (element >= 10);
}
var passed = [12, 5, 8, 130, 44].every(isBigEnough);
document.write("First Test Value : " + passed );
passed = [12, 54, 18, 130, 44].every(isBigEnough);
document.write("Second Test Value : " + passed );
</script>
</body>
</html>
Kết quả
First Test Value : falseSecond Test Value : true
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời