We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Sets value at index (+ve, -ve).
array.set$(x, i, v); // x: an array (updated) // i: index (-ve: from right) // v: value // --> x
const array = require('extra-array'); var a = [2, 4, 6, 8]; array.set$(a, 1, -4); // [2, -4, 6, 8] a; // [2, -4, 6, 8]
There was an error while loading. Please reload this page.