Created
October 15, 2017 02:24
-
-
Save danielrohers/58f895ba7f1863e75d071aaf00377f92 to your computer and use it in GitHub Desktop.
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
function sum (value) { | |
sum1(value, function (value) { | |
sum2(value, function (value) { | |
sum3(value, function (value) { | |
sum4(value, function (value) { | |
sum5(value, function (value) { | |
sum6(value, function (value) { | |
sum7(value, function (value) { | |
sum8(value, function (value) { | |
sum9(value, function (value) { | |
sum10(value, function (value) { | |
console.log(value); | |
}); | |
}); | |
}); | |
}); | |
}); | |
}); | |
}); | |
}); | |
}); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment