Skip to content

Instantly share code, notes, and snippets.

View donjude-eng's full-sized avatar
🎖️
<DivOPs/>

Don Jude Joseph donjude-eng

🎖️
<DivOPs/>
View GitHub Profile
var someName = {
balance: 0
};
function deposit(account, amount){
account.balance += amount;
}
function withdraw(account, balance){
account.balance -= balance;
}