min()方法用於從指定的數組中查找最小值。
用法:
min( 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.min([5, 3, 9, 2]));
</script>
</body>
</html>
輸出:
2
範例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.min(["a", "gfg"]));
</script>
</body>
</html>
輸出:
a
相關用法
- JavaScript Math min()用法及代碼示例
- Lodash _.min()用法及代碼示例
- Collect.js min()用法及代碼示例
- PHP min( )用法及代碼示例
- underscore.js min()用法及代碼示例
- d3.js d3.min()用法及代碼示例
- CSS min-height用法及代碼示例
- CSS min-width用法及代碼示例
- HTML Input Datetime min用法及代碼示例
- HTML Input Date min用法及代碼示例
- HTML Input Number min用法及代碼示例
- HTML Input Month min用法及代碼示例
- HTML Input Week min用法及代碼示例
- HTML Input Time min用法及代碼示例
- HTML Input Range min用法及代碼示例
- p5.js min()用法及代碼示例
- HTML Meter min用法及代碼示例
- HTML <input> min屬性用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Fabric.js min() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。