Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function repeat (fn, n) {
  2. for (i=0; i<n ; i++){
  3. //calling arbitrary function
  4. fn();
  5. }
  6. }
  7.  
  8. var helloVar = function hello(){
  9. console.log('Hello World');
  10. }
  11.  
  12. var goodByeVar = function goodBye(){
  13. console.log('Goodbye World');
  14. }
  15.  
  16. repeat(helloVar , 5);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement