Guest User

Untitled

a guest
Apr 25th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function myfunc() {
  2. console.log('this is myfunc');
  3. }
  4.  
  5.  
  6. oldmyfunc = myfunc;
  7. myfunc = function() {
  8. console.log('code to run before myfunc');
  9. oldmyfunc();
  10. }
  11.  
  12. myfunc();
  13. // code to run before myfunc
  14. // this is myfunc
Add Comment
Please, Sign In to add comment