Skip to content

Instantly share code, notes, and snippets.

@dotsonjb14
Created November 3, 2018 17:31
Show Gist options
  • Save dotsonjb14/7316501f478f9aebc683102cce77f1e4 to your computer and use it in GitHub Desktop.
Save dotsonjb14/7316501f478f9aebc683102cce77f1e4 to your computer and use it in GitHub Desktop.
let inputs = [];
inputs.push(4);
inputs.push(6);
let result = inputs
.map(x => x * x)
.reduce((state, val) => state + val, 0);
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment