Guest User

Untitled

a guest
Oct 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. function func1(flag){
  2. if(flag){
  3. alert("Caller is here!");
  4. }else {
  5. func2();
  6. }
  7. }
  8.  
  9. function func2(){
  10. arguments.callee.caller(true);
  11. }
Add Comment
Please, Sign In to add comment