Skip to content

Instantly share code, notes, and snippets.

@chikoski
Created October 16, 2014 01:49
Show Gist options
  • Select an option

  • Save chikoski/e26db99eb3295905e551 to your computer and use it in GitHub Desktop.

Select an option

Save chikoski/e26db99eb3295905e551 to your computer and use it in GitHub Desktop.
var n = 13;
var message = "";
var counter = 0;
while(counter < n){
message = message + "SFC ";
counter = counter + 1;
}
console.log(message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment