There’s more to AS3’s break
and continue
statements than you might think. Chances are, you’ve used them to skip to after a loop (break
) and skip the current loop iteration (continue
), but they can do so much more. Today’s article will cover some of the advanced ways to use the break
and continue
statements in AS3 resulting in nicer—and maybe even faster—code.
Posts Tagged label
I’m back from a month off for winter break! Today I’ll start off with a very short article to ease back into things. Today I’ll cover a “gotcha” that got me recently and resulted in a bug report that was pretty tough to solve. Read on to see what it was.