gpt4 book ai didi

javascript - 尝试生成随机 Unicode 时,语法错误 "Illegal"标记

转载 作者:行者123 更新时间:2023-12-03 11:09:47 27 4
gpt4 key购买 nike

当尝试创建随机 Unicode(不是来自所有的 unicode,只是编号的)时,我收到此错误:

Uncaught SyntaxError: Unexpected token ILLEGAL 

使用此代码时:

function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
};

// Error line:
var randUnicode = ('\u' + getRandomInt(1000, 9999).toString());

这可能是因为 javascript 将 \u 视为 Unicode 的触发器,但期望它后面有一些东西。

如何生成 1000 到 9999 之间的随机 Unicode 字符?

最佳答案

var randUnicode = String.fromCharCode("0x"+ getRandomInt(1000, 9999).toString()) ;

关于javascript - 尝试生成随机 Unicode 时,语法错误 "Illegal"标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27664651/

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