📌  相关文章
📜  来自名称 js 的随机字母 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:54.642000             🧑  作者: Mango

代码示例2
let myName = 'yourname';
let randomChar = Math.trunc(Math.random() * myName.length);
console.log(myName.charAt(randomChar));