Type Conversions: Coercion vs. Casting
Monday, July 17th, 2006Coercion
At run-time the Flash Player will implicitly convert the data type of a value into one that is suitable to be assigned.
For example, if number 5 is assigned to a variable of type Boolean, it will convert the 5 to a value of true and then store true in the variable.
Casting
In your code, you explicitly [...]




