收藏
回答

调试输出数组时console.log(array)显示数组信息错误

框架类型 问题类型 操作系统 工具版本
小游戏 Bug 1.10.1808010
function NewRandomPoint() {
   return {
      x: Math.random() * 100,
      y: Math.random() * 100
   }
}
 
var points = [
   NewRandomPoint(),
   NewRandomPoint(),
   NewRandomPoint()
]
 
console.log(points)

以上代码先生成了包含3个点的数组对象,然后用console.log()打印。

这是我的结果:


打印了两个元素并且显示该数组长度为2……

回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容