Skip to content
Subhajit Sahu edited this page Feb 2, 2021 · 16 revisions

Lists all values. 🏃 📼 📦 🌔 📒

Similar: value, values, hasValue.
Similar: keys, values, entries.

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

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

references

Clone this wiki locally