Skip to content

Instantly share code, notes, and snippets.

@billautomata
Created October 25, 2014 20:54
Show Gist options
  • Save billautomata/909a1bd00fd6d3d7cd07 to your computer and use it in GitHub Desktop.
Save billautomata/909a1bd00fd6d3d7cd07 to your computer and use it in GitHub Desktop.
example code
// 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