Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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