Gets value at index.
Alternatives: get, getAll, getPath.
Similar: get, set, remove.
This is part of package extra-array.
This is browserified, minified version of @extra-array/get.
It is exported as global variable array_get.
CDN: unpkg, jsDelivr.
array.get(x, i);
// x: an array
// i: index (-ve: from right)
const array = require("extra-array");
var x = [2, 4, 6, 8];
array.get(x, 1);
// 4
array.get(x, 3);
// 8