摘要: 返回大小写的26个字母表数组 function alphabet(str) { return Array(26).fill(1,0,26).map((el,index) => { return String.fromCharCode((el,index + str.charCodeAt(0))) } 阅读全文
posted @ 2022-03-10 10:43 怕浪小乌龟 阅读(95) 评论(0) 推荐(0) 编辑