Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save un1crom/4e33c91460546f32faaa513d9156a400 to your computer and use it in GitHub Desktop.
Save un1crom/4e33c91460546f32faaa513d9156a400 to your computer and use it in GitHub Desktop.
/*(<seed> //write a nodejs javascript function to count to a number between 34 and 98 and say Hello World.
</seed>)
<stop>});</stop>
<codeType>javascriptServer</codeType>*/
var count = 34;
while(count <= 98){
console.log(count + " Hello World");
count++;
}
/*<output>{
"console": {},
"count": 99
}
</output>*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment