Skip to content

Instantly share code, notes, and snippets.

@abel-masila
Last active November 18, 2019 12:40
Show Gist options
  • Save abel-masila/0f03db4a10cc1426197cf87c6e0f8d8f to your computer and use it in GitHub Desktop.
Save abel-masila/0f03db4a10cc1426197cf87c6e0f8d8f to your computer and use it in GitHub Desktop.
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