Advertisement
elvman

Untitled

Nov 26th, 2014
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function a()
  2. {
  3.     function a()
  4.     {
  5.         b(false);
  6.     }
  7.  
  8.     function b(callA)
  9.     {
  10.         if (callA)
  11.         {
  12.             a();
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement