Created
October 25, 2014 20:54
-
-
Save billautomata/909a1bd00fd6d3d7cd07 to your computer and use it in GitHub Desktop.
example code
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
// javascript | |
var sum = 0 | |
for(var i = 0; i < 100; i++){ | |
sum += 1 | |
} | |
sum = sum / 100 | |
console.log('average is :'+sum) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment