Skip to content

entries

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

Lists all entries.

Similar: [keys], values, [entries].

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

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

references

Clone this wiki locally