Advertisement
mgaikema

write 'nice' 250 times

Oct 3rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.  * Javascript code to write 'nice' 250 times.
  3.  * For educational purposes only.
  4.  */
  5.  
  6. var str = '';
  7. for (var i = 0; i < 250; i++) {
  8.   str += 'nice ';
  9. }
  10. console.log(str);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement