Skip to content

Instantly share code, notes, and snippets.

@AntonisFK
Created April 6, 2016 05:42
Show Gist options
  • Save AntonisFK/a7e730af329efaeb3f602ee199e39d44 to your computer and use it in GitHub Desktop.
Save AntonisFK/a7e730af329efaeb3f602ee199e39d44 to your computer and use it in GitHub Desktop.
Write a program that would print all the numbers from 1 to 255
//Write a program that would print all the numbers from 1 to 255
var numbers = function(){
for(var i = 1 ; i > 256; i++){
console.log(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment