We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Get zero-based index for an element in array.
Similar: index, indexRange, size, isEmpty.
function index(x, i) // x: an array // i: ±index
const xarray = require('extra-array'); var x = [2, 4, 6, 8]; xarray.index(x, 1); // → 1 xarray.index(x, -1); // → 3 xarray.index(x, -10); // → 0
There was an error while loading. Please reload this page.