actionscript 3 - Meaning of the += operator when using a function? -


if see this:

myvariable += myfunction(); 

how work? like, example, myfunction() function supposed return value added myvariable?

that's correct. myfunction() evaluated first, (e.g., it'll run , return value), return value added myvariable.


Comments

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -