Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. const shout = () => {
  2. return "A MORT LES BANQUES"
  3. }
  4.  
  5. const account = {
  6. name: "Alex",
  7. balanceEU: 0,
  8. balanceUS: 0,
  9.  
  10. shout() {
  11. return "PROUT"
  12. },
  13. antiCapitalist() {
  14. return this.shout()
  15. }
  16. }
  17.  
  18.  
  19. console.log(account.antiCapitalist())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement