- 
                Notifications
    You must be signed in to change notification settings 
- Fork 5
set$
        Subhajit Sahu edited this page Nov 20, 2022 
        ·
        27 revisions
      
    Set value at index.
Alternatives: set, set$, setPath$.
Similar: get, set, remove.
function set$(x, i, v)
// x: an array (updated)
// i: index
// v: valueconst array = require('extra-array');
var x = [2, 4, 6, 8];
array.set$(x, 1, 40);
// → [ 2, 40, 6, 8 ]
x;
// → [ 2, 40, 6, 8 ]
var x = [2, 4, 6, 8];
array.set$(x, 3, 80);
// → [ 2, 4, 6, 80 ]