We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Gets value at index (+ve, -ve).
Alternatives: one, all, fractional.
array.get(x, i); // x: an array // i: index (-ve: from right) // --> value
const array = require('extra-array'); var x = [2, 4, 6, 8]; array.get(x, 1); // 4 array.get(x, -1); // 8