Please add a comment to this JIRA:
https://issues.apache.org/jira/browse/FLEX-35070

On Apr 25, 2016, at 10:37 AM, lizhi <s...@qq.com> wrote:

> i do not konw the best code,but this code fast than now
> 
> //slow code 
> var foreachiter0_target = this.ss;
>  for (var foreachiter0 in foreachiter0_target) 
>  {
>  var s = foreachiter0_target[foreachiter0];
>  {
>  }}
> 
> //more fast code
>  var len=this.ss.length;
>  for(var i=0;i<len;i++){
>         var s = this.ss[i];
>  }
> 
> 
> 
> --
> View this message in context: 
> http://apache-flex-development.2333347.n4.nabble.com/flexjs-foreach-very-slow-tp52571.html
> Sent from the Apache Flex Development mailing list archive at Nabble.com.

Reply via email to