Skip to content

Instantly share code, notes, and snippets.

@bpinedah
Created April 6, 2018 18:36
Show Gist options
  • Save bpinedah/051c101afebf344f086a79dd5619eb29 to your computer and use it in GitHub Desktop.
Save bpinedah/051c101afebf344f086a79dd5619eb29 to your computer and use it in GitHub Desktop.
Functional programming article
const myFunction = () => Math.random();
myFunction(); // 0.5578493686496315
myFunction(); // 0.7899515813186793
myFunction(); // 0.1619741867064739
// No way baby, your output is not the same.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment