Guest User

Untitled

a guest
Oct 17th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function printManyTimes(str) {
  2. "use strict";
  3.  
  4. // change code below this line
  5.  
  6. const SENTENCE = str + " is cool!";
  7. for(let i = 0; i < str.length; i+=2) {
  8. console.log(SENTENCE);
  9.  
  10. }
  11.  
  12. // change code above this line
  13.  
  14. }
  15. printManyTimes("freeCodeCamp");
Add Comment
Please, Sign In to add comment