gpt4 book ai didi

javascript - 不一致实例

转载 作者:可可西里 更新时间:2023-11-01 01:29:18 25 4
gpt4 key购买 nike

有人可以解释一下吗?

[] instanceof Array; // true
'' instanceof String; // false

最佳答案

注意以下几点:

"" instanceof String;             // => false
new String("") instanceof String; // => true

instanceof需要一个对象,但 "" 是字符串文字,而不是 String 对象。使用 typeof 注意以下类型功能:

typeof ""             // => "string"
typeof new String("") // => "object"
typeof [] // => "object"
typeof new Array() // => "object"

关于javascript - 不一致实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8569357/

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