Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. return{
  2. funcA : function(){
  3. console.log("funcA call");
  4. this.funcD();
  5. },
  6. funcB : function(){
  7. console.log("funcB call");
  8. this.funcD();
  9. },
  10. funcC : function(){
  11. console.log("funcB call");
  12. this.funcD();
  13. },
  14.  
  15. funcD : function(){
  16. console.log("funcD call");
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement