Guest User

Untitled

a guest
Jul 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. let client = {
  2. main_account_balance: 0,
  3. balance_setter: function(value) {
  4. console.log(value);
  5. console.log('balance_setter');
  6. this.main_account_balance = value;
  7. }
  8. };
  9.  
  10. client.main_account_balance = 15;
  11.  
  12. client.balance_setter(15);
  13.  
  14. main_account_balance
Add Comment
Please, Sign In to add comment