max()方法用于从指定的数组中查找最大值。
用法:
max( array )
参数:此方法接受上述和以下描述的单个参数:
- array:此参数保存要迭代的数组。
返回值:此方法返回数组的最大值。
范例1:
Javascript
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<script type="text/javascript">
console.log(fabric.util.array.max([5, 3, 9, 2]));
</script>
</body>
</html>
输出:
9
范例2:在下面的代码中,考虑了字母的ascii值以找到最大值。
Javascript
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<script type="text/javascript">
console.log(fabric.util.array.max(["a", "gfg"]));
</script>
</body>
</html>
输出:
gfg
相关用法
- JavaScript Math max()用法及代码示例
- Lodash _.max()用法及代码示例
- Collect.js max()用法及代码示例
- HTML Meter max用法及代码示例
- HTML Input Range max用法及代码示例
- PHP max( )用法及代码示例
- d3.js d3.max()用法及代码示例
- CSS max-height用法及代码示例
- CSS max-width用法及代码示例
- HTML Progress max用法及代码示例
- HTML Input Datetime max用法及代码示例
- HTML Input Date max用法及代码示例
- HTML Input DatetimeLocal max用法及代码示例
- HTML Input Number max用法及代码示例
- HTML Input Week max用法及代码示例
- HTML Input Month max用法及代码示例
- HTML Input Time max用法及代码示例
- HTML <meter> max属性用法及代码示例
- HTML <progress> max属性用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Fabric.js max() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。