Skip to content

entries

Subhajit Sahu edited this page May 11, 2020 · 12 revisions

Lists all index-value pairs. 🏃 📼 📦 🌔

Similar: keys, values, entries.

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

var x = ['A', 'B', 'C'];
[...array.entries(x)];
// [[0, 'A'], [1, 'B'], [2, 'C']]

references

Clone this wiki locally