Created
September 12, 2012 03:32
-
-
Save KDawg/3704125 to your computer and use it in GitHub Desktop.
Anna Learns to Code With Addition
This file contains 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() { | |
var i; | |
var value; | |
var start = 1; | |
var end = 10; | |
var by= 1; | |
value = start; | |
for (i = start; i <= end; i += by) { | |
document.write(value + '<br/>'); | |
value = value + by; | |
} | |
}) (); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment