Last active
November 18, 2019 12:40
-
-
Save abel-masila/0f03db4a10cc1426197cf87c6e0f8d8f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function BankAccount(cash) { | |
this.cash = cash; | |
this.hasMoney = !!cash; | |
} | |
var account = new BankAccount(100.50); | |
console.log(account.cash); // 100.50 | |
console.log(account.hasMoney); // true | |
var emptyAccount = new BankAccount(0); | |
console.log(emptyAccount.cash); // 0 | |
console.log(emptyAccount.hasMoney); // false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment