Skip to content

Instantly share code, notes, and snippets.

@bytao7mao
Last active August 7, 2017 12:26
Show Gist options
  • Save bytao7mao/dd359289e35b5f317ffa0dd599cdd758 to your computer and use it in GitHub Desktop.
Save bytao7mao/dd359289e35b5f317ffa0dd599cdd758 to your computer and use it in GitHub Desktop.
repeat function
function repeat(str, num) {
return str.repeat(num);
}
repeat("abc ", 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment