Skip to content

entries

Subhajit Sahu edited this page Feb 4, 2021 · 8 revisions

Lists all key-value pairs. 📦 😺 🏃 📼 🌔 📜 📰 📘

Similar: keys, values, entries.


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

var x = [['a', 'b', 'c'], [1, 2, 3]];
[...lists.entries(x)];
// [ [ 'a', 1 ], [ 'b', 2 ], [ 'c', 3 ] ]


References

Clone this wiki locally