javascript - 关于JS数组的forEach无法修改数组元素的值
问题描述
// 第一种(数组forEach无法修改数组元素的值)let testArr = [1, true, [], ’4’, {a: 1}];testArr.forEach((value, index, arr) => { value = 6; // arr[index] = 6; 此处可以修改成功[6, 6, 6, 6, 6];});console.log(testArr); // 输出[1, true, [], ’4’, {a: 1}]// 第二种(数组forEach能修改数组元素的属性值)let objArr = [{a: 1}, {a: 2}, {a: 3}];objArr.forEach((value, index, arr) => { value.a = 6;});console.log(objArr); // 输出[{a: 6}, {a: 6}, {a: 6}];// 第三种(自己实现一个类似forEach的方法)Array.prototype._forEach = function(callback, _this) { if (!_this) _this = this; for (let key in _this) {callback.call(_this, _this[key], key, _this); }}// 调用方法时发现结果一样// 顺便提问为什么不能写[1,2,3]只能写new Array(1, 2, 3),会报错let newArr = new Array(1, 2, 3);newArr._forEach((value, index, arr) => { value = 4;});console.log(newArr);希望各位有空帮我解答一下,谢谢~
问题解答
回答1:请搜索:js方法参数传递方式。参数是按值传递的,也就是说基本类型是拷贝了一份值,引用类型是吧引用拷贝下来传递进去。
相关文章:
1. 运行python程序时出现“应用程序发生异常”的内存错误?2. android - Genymotion 模拟器可以做屏幕适配检测吗?3. macos - 无法source activate python274. java - butterknife怎么绑定多个view5. java - 同步/异步与阻塞/非阻塞之间的差异具体是什么?6. css3 让图片变成灰色(filter),但针对IE11浏览器无效7. html - vue里面:src在IE(9-11)下不显示图片8. html5 - 前端面试碰到了一个缓存数据的问题,来论坛上请教一下9. javascript - 打算写一个c++的node图像处理模块,有没有推荐的c++图片处理库?10. css - 移动端 盒子内加overflow-y:scroll后 字体会变大

网公网安备