Skip to content

Instantly share code, notes, and snippets.

View EmmanuelBeziat's full-sized avatar
🎮
Leave me alone!

Emmanuel Béziat EmmanuelBeziat

🎮
Leave me alone!
View GitHub Profile
@EmmanuelBeziat
EmmanuelBeziat / oneliners.js
Last active April 1, 2019 19:33 — forked from mikowl/oneliners.js
👑 Awesome one-liners you might find useful while coding.
const headings = [ ... document.querySelectorAll('h1') ]
[{id: 1}, {id: 2}].map(x => x.id)
// [1,2]
// By @coderitual
// https://twitter.com/coderitual/status/1112297299307384833
// Remove any duplicates from an array of primitives.