- Ext JS 3.0 Cookbook
- Jorge Ramon
- 146字
- 2021-04-01 13:43:45
Effortless range checking for numbers
Now, you'll see how to use Ext JS in order to guarantee that a number falls within a certain range.
How to do it...
The following steps illustrate how to perform range checking on numeric values:
- Create your sample numbers:
var number1 = 30; var number2 = 75;
- Check whether your numbers are within a range:
var constrained = number1.constrain(25, 50); // constrained is 30 because number1 is // within the specified range constrained = number2.constrain(25, 50); // constrained is 50 because number2 is // greater than the max. value in the range
Ext.Number
is a one-function extension of the JavaScript Number
object. The only function of Ext.Number
is constrain(min, max)
, which simply uses methods of the Math
JavaScript object to accomplish the range checks on the given number.
constrain: function(min, max) { return Math.min(Math.max(this, min), max); }
推薦閱讀
- InDesign平面設計案例教程:從設計到印刷
- NetLogo多主體建模入門
- Building Websites with Joomla! 1.5
- Photoshop CS6 圖像處理項目任務教程
- Elasticsearch數據搜索與分析實戰
- 無師自通AutoCAD 2014中文版機械設計
- 傳奇:ZBrush數字雕刻大師之路(第2版)
- UG NX 10中文版完全自學手冊
- OpenGL 4.0 Shading Language Cookbook
- After Effects CS6 標準教程
- UG NX 12.0完全自學手冊(第4版)
- 中文版Photoshop CS6基礎教程
- Oracle Modernization Solutions
- 案例學:Photoshop電商美工設計
- MATLAB R2020a入門、精通與實戰