/*( //write a nodejs javascript function to count to a number between 34 and 98 and say Hello World.
//but try to avoid this error: Unexpected end of input
)
});
javascriptServer*/
//var count = 34;
//
//function sayHello() {
// console.log('Hello World');
//}
//for (var i = 0; i < 100; i++) {
// if (count < 98) {
// count++;
// sayHello();
// } else {
// break; // or throw error? or use continue? or set a flag to end loop? or add an "else
/**/