Lodash _.clamp() 方法
_.clamp()方法用于将包含范围内的数字钳位在下限和上限内。
句法:
_.clamp(number, lower, upper)
参数:此方法接受三个参数,如上所述,如下所述:
- number:此参数保存要钳位的数字。
- lower:此参数保存下限。
- 上:此参数保存上限。
返回值:此方法返回钳制的数字。
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.clamp method
console.log(_.clamp(2, 3, 5));
console.log(_.clamp(2, -2, -5));
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.clamp method
console.log(_.clamp(15, -13, 13));
console.log(_.clamp(-15, -13, 13));
输出:
3
-2
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.clamp method
console.log(_.clamp(15, -13, 13));
console.log(_.clamp(-15, -13, 13));
输出:
13
-13