Home  >  Q&A  >  body text

一个javascript算法的理解

网上看到一个javascript的算法。但不是懂运行原理,求指教。

var ints=[1,3,2,4,8,6,7,5];
for(i = 0;i < ints.length;i++) {
 setTimeout(function(num){
 console.log(num);
 },ints[i],ints[i]);
}
PHPzPHPz2769 days ago611

reply all(4)I'll reply

  • 数据分析师

    数据分析师2017-10-01 01:15:49

    Understanding of a javascript algorithm - PHP Chinese website Q&A - Understanding of a javascript algorithm - PHP Chinese website Q&A

    Take a look around and learn.

    reply
    0
  • 阿神

    阿神2017-04-10 12:44:05

    setTimeout有两种形式
    setTimeout(code,interval)
    setTimeout(func,interval,args)
    所以第二个ints[i]就会作为参数传进去

    reply
    0
  • 黄舟

    黄舟2017-04-10 12:44:05

    javascript的执行上下文是采用运行期的,也就是说,如果不传ints[i]的话,会导致setTimeout里调用的number一直是数组的最后一项,也就是5。

    reply
    0
  • 高洛峰

    高洛峰2017-04-10 12:44:05

    遇到元素是 0 就死了.
    0 只是推迟到最后.

    reply
    0
  • Cancelreply