gpt4 book ai didi

javascript - String.fromCharCode(17) 的结果是什么?

转载 作者:行者123 更新时间:2023-12-02 12:43:45 26 4
gpt4 key购买 nike

我对这个静态方法感到困惑。当使用 17 个字符代码(控制键)时,我找不到将其与任何内容进行比较的方法。

Chrome 控制台:

String.fromCharCode(17)

它看起来像一个普通的空字符串。

mdn

This method returns a string and not a String object.

所以我想

String.fromCharCode(17) === "" 将返回 true。但它返回错误。为什么?

  • typeof(String.fromCharCode(17)) 返回“字符串”
  • String.fromCharCode(17) === null 返回 false
  • String.fromCharCode(17) === undefined 返回 false
  • 此外,为了确定,我做了 String.fromCharCode(17) === new String() 并且它也返回了 false...

我不明白...

最佳答案

mdn对于 String.fromCharCode() 引用不完整,

returns a string created by using the specified sequence of Unicode values.

在本例中,为不可打印字符 - ASCII 17 - 或设备控制 1。

关于javascript - String.fromCharCode(17) 的结果是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25278271/

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