flash: why use "var"?
flash: why use "var"?
Out of context: Reply #1
- Started
- Last post
- 13 Responses
- ave0
It's always a good isea to keep your code clean and organised (wherever possible). Specifying var, lets you know where you have initiated a variable, rather than simply assigning a value to it.
If your script becomes hefty you could easily loose track of assigning vs. initiating....best thing I can think of.