Skip to content
Subhajit Sahu edited this page Jun 12, 2020 · 16 revisions

Gets first entry. 🏃 📼 📦 🌔 📒

Similar: head, tail.

object.head(x);
// x: an object
const object = require('extra-object');

object.head({a: 1, b: 2, c: 3});
// [ 'a', 1 ]

object.head({});
// [ null, undefined ]

references

Clone this wiki locally