获取 JavaScript 对象中的最后一项可以通过以下几种方式实现:
const obj = { a: 1, b: 2, c: 3 };
const keys = Object.keys(obj);
const lastKey = keys[keys.length - 1];
const lastValue = obj[lastKey];
console.log(lastValue);
const obj = { a: 1, b: 2, c: 3 };
const entries = Object.entries(obj);
const lastEntry = entries[entries.length - 1];
const lastValue = lastEntry[1];
console.log(lastValue);
const obj = { a: 1, b: 2, c: 3 };
let lastValue;
for (const key in obj) {
lastValue = obj[key];
}
console.log(lastValue);
以上是获取 JavaScript 对象中最后一项的几种常见方法。根据具体的应用场景和需求,选择合适的方法即可。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云