Guest User

Untitled

a guest
Feb 15th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <script type="text/javascript">
  2. var enjoy = {
  3. fn: function(a, b) {
  4. return this;
  5. }
  6. };
  7. var water = {
  8. fn2: enjoy.fn
  9. };
  10.  
  11. console.log(enjoy.fn() === enjoy); // true
  12. console.log(water.fn2() === water); // true
  13. </script>
Add Comment
Please, Sign In to add comment