All Questions
Tagged with actionscript programming-practices
1 question
1
vote
3
answers
325
views
Why categorization into "Property" and "Methods"
I am looking at the String class in Actionscript 3.0.
It has a property called String.length .
Internally it's a getter function (or method ?) that returns the length of string.
Why can't it be ...