-
Notifications
You must be signed in to change notification settings - Fork 5
keys
Subhajit Sahu edited this page May 11, 2020
·
15 revisions
array.keys(x);
// x: an arrayconst array = require('extra-array');
var x = [1, 2, 3];
[...array.keys(x)];
// [ 0, 1, 2 ]