Love beautiful code? We do too.
Phương thức array some() trong Javascript kiểm tra có hay không phần tử nào trong mảng thỏa mãn hàm đã cho.
Cú pháp của nó như sau:
array.some(callback[, thisObject]);
Chi tiết về tham số
Trả về giá trị
Nếu một số phần tử thỏa mãn hàm kiểm tra, thì nó trả về true, nếu không là false.
Khả năng tương thích
Phương thức này là một phần bổ sung JavaScript cho chuẩn ECMA-262; để cho nó làm việc, bạn thêm code sau vào phần đầu trong script của bạn.
if (!Array.prototype.some)
{
Array.prototype.some = 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 true;
}
return false;
};
}
<html>
<head>
<title>JavaScript Array some Method</title>
</head>
<body>
<script type="text/javascript">
if (!Array.prototype.some)
{
Array.prototype.some = 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 true;
}
return false;
};
}
function isBigEnough(element, index, array) {
return (element >= 10);
}
var retval = [2, 5, 8, 1, 4].some(isBigEnough);
document.write("Returned value is : " + retval );
var retval = [12, 5, 8, 1, 4].some(isBigEnough);
document.write("<br />Returned value is : " + retval );
</script>
</body>
</html>
Kết quả
Returned value is : false
Returned value is : true
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời