Flex AS3: Is smaller varialble name is faster then longer names?
Posted
by Lalit
on Stack Overflow
See other posts from Stack Overflow
or by Lalit
Published on 2010-05-21T11:44:25Z
Indexed on
2010/05/21
12:20 UTC
Read the original article
Hit count: 173
We are in process of optimization of Flex AS3 Application.
One of my team member suggested us to make varible name length smaller to optimize the application performence.
i.e.
var IsRegionSelected:Boolean = false; //Slower
var IsRS:Boolean = false; //faster
Is it True? Please provide your views...
© Stack Overflow or respective owner