Skip to content

Instantly share code, notes, and snippets.

@very
Last active December 17, 2015 15:29
Show Gist options
  • Save very/5632268 to your computer and use it in GitHub Desktop.
Save very/5632268 to your computer and use it in GitHub Desktop.
function
sum
(
)
{
for
(
var
i
=
0
,
len
=
arguments
.
length
,
sum
=
0
;
i
<
len
;
i
+=
1
)
sum
+=
arguments
[
i
]
return sum
}
console
.
log
(
sum
(
1
,
2
,
3
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment