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

Thursday, December 6, 2012

Codecademy: Codeyear Attack!


//sample solution


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

// write your function here
function attackBalance(someBankAccountObj){
someBankAccountObj.balance = 5;
}

var jonesBankAccount = new BankAccount ("Jones");

console.log("jonesBankAccount has " + jonesBankAccount.balance + " dollars!");
attackBalance(jonesBankAccount);
console.log("After attack, jonesBankAccount has " + jonesBankAccount.balance + " dollars!");

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts