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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。