Last active
March 20, 2018 19:18
-
-
Save cmstead/dfeea6faf80c96d5c2a738fc822918ee to your computer and use it in GitHub Desktop.
A small example written in Javascript...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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