8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

Chrome 的 JavaScript 控制台在评估对象时是否很懒惰?

lobati 2月前

89 0

我先从代码开始:var s = [\'hi\'];console.log(s);s[0] = \'bye\';console.log(s);很简单,对吧?响应此代码,Firefox 控制台显示:[ \'hi\' ][ “...

我将从代码开始:

var s = ["hi"];
console.log(s);
s[0] = "bye";
console.log(s);

很简单,对吧?Firefox 控制台响应此消息并显示:

[ "hi" ]
[ "bye" ]

太棒了,但是 Chrome 的 JavaScript 控制台(7.0.517.41 beta)显示:

[ "bye" ]
[ "bye" ]

是我做错了什么吗,还是 Chrome 的 JavaScript 控制台在评估我的数组时特别懒惰?

Screenshot of the console exhibiting the described behavior.

帖子版权声明 1、本帖标题:Chrome 的 JavaScript 控制台在评估对象时是否很懒惰?
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由lobati在本站《object》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 根据Eric的解释,这是由于 console.log() 排队,并且打印了数组(或对象)的后续值。

    可能有 5 种解决方案:

    1. arr.toString()   // not well for [1,[2,3]] as it shows 1,2,3
    2. arr.join()       // same as above
    3. arr.slice(0)     // a new array is created, but if arr is [1, 2, arr2, 3] 
                        //   and arr2 changes, then later value might be shown
    4. arr.concat()     // a new array is created, but same issue as slice(0)
    5. JSON.stringify(arr)  // works well as it takes a snapshot of the whole array 
                            //   or object, and the format shows the exact structure
    
返回
作者最近主题: