在 JavaScript 中更新数组值
数组是类似列表的对象,因为它们是在通用名称下包含相似值的单个对象。数组是可变对象。因此我们可以更新数组值。
本教程将演示如何在 JavaScript 中更新数组值。
我们可以使用它们的索引访问元素。因此,我们可以使用它们的索引更新元素。
例如,
var array1 = ["fruits", "vegetables", "apple"];
array1[1] = "mango";
console.log(array1);
输出:
['fruits', 'mango', 'apple']
还可以创建一个函数,它将数组、索引和新值作为参数来更新以下数组。
例如,
var array1 = ["fruits", "vegetables", "Refrigerator"];
function update(array, index, newValue) {
array[index] = newValue;
}
let newVal = "apple";
update(array1, 2, newVal);
console.log(array1);
输出:
['fruits', 'vegetables', 'apple']
我们还可以更新对象。它们可以替代数组。我们必须使用它们的键单独访问这些值并更新它们。我们可以使用 .
访问这些值运算符或 []
括号。
例如,
var ob1 = {"a": 1, "b": 2, "c": 3};
ob1.a = 12
ob1["b"] = 15;
console.log(ob1)
输出:
{a: 12, b: 15, c: 3}
相关文章
Do you understand JavaScript closures?
发布时间:2025/02/21 浏览次数:108 分类:JavaScript
-
The function of a closure can be inferred from its name, suggesting that it is related to the concept of scope. A closure itself is a core concept in JavaScript, and being a core concept, it is naturally also a difficult one.
Do you know about the hidden traps in variables in JavaScript?
发布时间:2025/02/21 浏览次数:178 分类:JavaScript
-
Whether you're just starting to learn JavaScript or have been using it for a long time, I believe you'll encounter some traps related to JavaScript variable scope. The goal is to identify these traps before you fall into them, in order to av
How much do you know about the Prototype Chain?
发布时间:2025/02/21 浏览次数:150 分类:JavaScript
-
The prototype chain can be considered one of the core features of JavaScript, and certainly one of its more challenging aspects. If you've learned other object-oriented programming languages, you may find it somewhat confusing when you start
用 jQuery 检查复选框是否被选中
发布时间:2024/03/24 浏览次数:102 分类:JavaScript
-
在本教程中学习 jQuery 检查复选框是否被选中的所有很酷的方法。我们展示了使用直接 DOM 操作、提取 JavaScript 属性的 jQuery 方法以及使用 jQuery 选择器的不同方法。你还将找到许多有用的
jQuery 中的 Window.onload 与 $(document).ready
发布时间:2024/03/24 浏览次数:180 分类:JavaScript
-
本教程演示了如何在 jQuery 中使用 Window.onload 和 $(document).ready 事件。