Skip to content

Instantly share code, notes, and snippets.

@cmstead
Last active March 20, 2018 19:18
Show Gist options
  • Save cmstead/dfeea6faf80c96d5c2a738fc822918ee to your computer and use it in GitHub Desktop.
Save cmstead/dfeea6faf80c96d5c2a738fc822918ee to your computer and use it in GitHub Desktop.
A small example written in Javascript...
const someStuff = []
(function () {
'use strict'
someStuff.push(1)
const logThings = (x => console.log(x))
[2, 3, 4, 5]
.concat(someStuff)
.forEach(logThings)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment