📜  Prototype-表达范围

📅  最后修改于: 2020-10-21 08:48:14             🧑  作者: Mango


 

原型范围代表值的间隔。获取范围的首选方法是使用$ R实用函数。

您可以使用以下简单语法创建大量值-

$R(1, 10).inspect();

$R('a', 'e').inspect();

这将产生以下结果-

['1, 2, 3, 4, 5, 6, 7, 8, 9, 10']

['a', 'b', 'c', 'd', 'e']

include()方法

此方法确定值是否包含在范围内-

句法

Range.include(value);

返回值

如果包含value,则返回true值,否则返回false。

Prototype examples
      
      
      
   

   
      

Click the button to see the result.



输出