Skip to content

Instantly share code, notes, and snippets.

@georgestephanis
Created June 5, 2012 18:10
Show Gist options
  • Save georgestephanis/2876632 to your computer and use it in GitHub Desktop.
Save georgestephanis/2876632 to your computer and use it in GitHub Desktop.
for( var i = 0; i < 10; i++ ){
alert( 'i=' + i );
}
var i = 0;
while( i < 10 ){
alert( 'i=' + i );
i++
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment