range.down()
The math.range-down()
or range.down()
function returns the range of numbers where $from
is higher than $to
.
Parameters
$from
$from
The value of the number
type indicates the beginning of the range.
$to
$to
The value of number
type indicates the end of the range.
$step: 1
$step: 1
The value of number
type indicates each increment of the range. By default, it's 1
.
$except: null
$except: null
The value of a number
or list
of numbers not belonging to the range.
$separator: auto
$separator: auto
A separator between the given range numbers.
Return
The return value is the list of numbers of the given range.
Examples
Last updated