Different methods for type casting in ActionScript 3

actionscript-3

Solution

Here's an earlier thread on this same topic, you'll find lots of details in there.

Link

Problem

What is the difference between: ``` Car(someObject).isRacing; ``` and ``` (someObject as Car).isRacing; ```

Original source

Related problems