gpt4 book ai didi

javascript - isArray 等同于 new Map()?

转载 作者:行者123 更新时间:2023-11-30 07:33:59 25 4
gpt4 key购买 nike

如何确定我的数据结构是 Map() 类型?

我到处找,没找到方法

我真的很想开始使用它们,因为我可以使用对象作为键!

最佳答案

您可以使用 instanceof 运营商

var map = new Map();
var arr = [];

console.log(map instanceof Map);
console.log(map instanceof Array);
console.log(arr instanceof Map);
console.log(arr instanceof Array);

来自Documentation

The instanceof operator tests whether an object has in its prototype chain the prototype property of a constructor.

关于javascript - isArray 等同于 new Map()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40147982/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com