Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Was thinking of creating a CONS function to create a list, but then realized that im not mutating any state with foo += 1, since its == foo = foo + 1 which is a new object

share|improve this question
9  
actually, foo += foo + 1 is not foo = foo + 1 it is foo = foo + foo + 1. – jer May 21 '11 at 6:12
good point i was thinking foo += 1 in my head – Tyler Gillies May 21 '11 at 8:40

1 Answer

up vote 15 down vote accepted

The state is changed: the value referenced with the variable foo changes.

This is "not functional" in any pure sense. I might be tempted to call it "confusing" ;-)

Happy coding.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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