Skip to content
Subhajit Sahu edited this page May 11, 2020 · 15 revisions

Lists all indices. 🏃 📼 📦 🌔

array.keys(x);
// x: an array
const array = require('extra-array');

var x = [1, 2, 3];
[...array.keys(x)];
// [ 0, 1, 2 ]

references

Clone this wiki locally