Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, December 6, 2012

Codecademy: Codeyear Foiled Again


//sample solution


function BankAccount( lastname ) {
    this.lastname = lastname;
    var balance = 1000000;
}

function attackBalance( account ) {
//note how undefined is treated like true or false, a reserved word
if(account.balance===undefined){
console.log("Can't attack");
} else {
account.balance = 5;
}
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts