Skip to content

Instantly share code, notes, and snippets.

@seonatic
Created June 26, 2018 17:44
Show Gist options
  • Save seonatic/6badbde2d083b762b892551c034f4b5c to your computer and use it in GitHub Desktop.
Save seonatic/6badbde2d083b762b892551c034f4b5c to your computer and use it in GitHub Desktop.
// source https://jsbin.com
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
var a = [1,2,3,4];
var b= a.reduce (( acc, item) => acc+item);
console.log(b);
</script>
<script id="jsbin-source-javascript" type="text/javascript">
var a = [1,2,3,4];
var b= a.reduce (( acc, item) => acc+item);
console.log(b);</script></body>
</html>
var a = [1,2,3,4];
var b= a.reduce (( acc, item) => acc+item);
console.log(b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment