programming languages - ActionScript 3 code learning -


what statement (i = 0; i++); mean in actionscript 3 or in computer programming in general?

maybe mean i=0;i<number;i++?

it's written for loop. means want loop action specific number of times.

the first part declares variable, second shows how many times loop , last 1 shows how want increment. i++ means want increment 1

for example

for( i=0; i<10; i++){       do_action(); } 

it loop 10 times , execute code in bracets


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -