Loops/For with a specified step: Difference between revisions

Content added Content deleted
Line 285: Line 285:
output += i + ', ';
output += i + ', ';
}
}
output += "who do we appreciate?";
output += 'who do we appreciate?';
document.write(output);</lang>
document.write(output);</lang>