gpt4 book ai didi

javascript - 从列表中获取包含 JavaScript 中的 Unicode 的字符串

转载 作者:行者123 更新时间:2023-12-04 06:35:52 26 4
gpt4 key购买 nike

我有一个 Unicode 值列表 [65, 66, 67] 并且我想要相应的字符串 "ABC"。我查看了 documentation并找到了函数 String.fromCharCode() 来完成我需要做的事情。唯一的问题是参数必须是一个数字序列

所以如果我使用 String.fromCharCode([65, 66, 67]) 它会给我 ""

有没有办法允许列表被视为函数的序列

最佳答案

您需要使用 ... spread Syntax 展开数组。

console.log(String.fromCharCode(...[65, 66, 67]));

来自 MDN

Spread syntax allows an iterable such as an array expression to be expanded in places where zero or more arguments (for function calls) or elements (for array literals) are expected, or an object expression to be expanded in places where zero or more key-value pairs (for object literals) are expected.

关于javascript - 从列表中获取包含 JavaScript 中的 Unicode 的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44958183/

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