We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Generate array from given number range.
Alternatives: from, from$. Similar: from, fromRange, fromInvocation, fromApplication.
function fromRange(v, V, dv) // v: start number // V: end number, excluding // dv: step size [1]
const xarray = require('extra-array'); xarray.fromRange(0, 4); // → [ 0, 1, 2, 3 ] xarray.fromRange(0, 8, 2); // → [ 0, 2, 4, 6 ]
There was an error while loading. Please reload this page.