_.partition()函数用于获取一个数组作为输入并返回两个数组。第一个数组包含满足谓词(条件)的那些元素,第二个数组包含其余元素。
用法:
_.partition(list, predicate)
参数:该函数接受上述和以下所述的两个参数:
- list:此参数保存项目列表。
- predicate:此参数保存真值条件。
返回值:此函数根据谓词条件返回两个分离的数组。
范例1:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src=
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>
</head>
<body>
<script type="text/javascript">
(function () {
var arr = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
var division = _.partition(arr, function (element) {
return element % 2 != 0;
});
console.log(division);
}());
</script>
</body>
</html>
输出:
范例2:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src=
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>
</head>
<body>
<script type="text/javascript">
(function () {
var words = ["javascript", "java", "unix",
"hypertext", "undescore", "CSS"];
var part = _.partition(words, function (element) {
return element.length > 4;
});
console.log(part);
}());
</script>
</body>
</html>
输出:
相关用法
- Lodash _.partition()用法及代码示例
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
- d3.js d3.bisectLeft()用法及代码示例
- PHP stream_get_transports()用法及代码示例
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Underscore.js | _.partition() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。