vote up 0 vote down star

can you use parameters some how to alter 'book' and 'person' in this statement : book.borrower= person; eg JSObj.borrower = "SteveJobs"; I cannot seem to find a way, Is there one?

flag
3  
There is no DOM involved in any of the code you have there, and nothing that takes parameters. You should probably rephrase your question, it doesn't make a whole lot of sense. – David Dorward Sep 10 at 9:56

1 Answer

vote up 1 vote down

Maybe you meant to have something like this:

function changeBorrower(book, person)
{
    book.borrower = person;
}

// USAGE
changeBorrower(JSObj, "SteveJobs");
link|flag
Makram, thanks for your response In fact I have similar code ie function loanbook (book, lender) { book.borrower = lender; alert(book.borrower); } loanbook("JSObj", "Frank"); but its not working?? – alan Sep 10 at 10:22
Further to your response, I noticed you had no "" around JSObj I have removed mine and it works fine, why is that? Thank you so much Alan – alan Sep 10 at 10:31
Because a string literal and a variable are completely different things. – David Dorward Sep 10 at 15:47
David,thanks...what a bunny...i've just started playing with OOP. I understand now, thank you for your response – alan Sep 10 at 22:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.