Today’s article is in response to some interesting comments on the previous article comparing Array’s performance to that of Vector. Today I’ll test different types of Vectors and the performance of deleting elements.
Posts Tagged types
Details of toString()
Jun 17
When an object is converted to a String, it is first checked for a toString() method. But there are subtleties to this that you may not have considered.
Null and Undefined
Jun 10
Usually languages just have one way to specify “no value”. Call it null or nil or whatever you’d like, but AS3 and JavaScript have two: null and undefined. Here’s a little bit to help you understand when and why you’ll come across the two as well as some tricky differences between them.