Js箭头函数

1._ =>// 意思可以理解为fn1不需要变量,不需要传递参数... const fn1 = _ => { // ... } // 效果等同于 const fn1 = () => { // ... }

- 阅读全文 -

html文字转语音

SpeechSynthesisUtterance基本介绍SpeechSynthesisUtterance是HTML5中新增的API,用于将指定文字合成为对应的语音.也包含一些配置项,指定如何去阅读(语言,音量,音调)等SpeechSynthesisUtterance基本属性SpeechSynthesisUtterance.lang 获取并设置话语的语言SpeechSynthesisUtteranc

- 阅读全文 -

Js字符串转浮点、number

此处推荐三种方法,并指出其中利弊Number(),parseFloat(),parseInt()当字符串不是纯数字时,使用Number()强转会导致结果变为NaN,所以这里推荐使用parseFloat()结合toFixed(n)来转注:toFixed(n)是截取小数点位数的函数const a = "88.12" console.log(Number(a)) // 88.12

- 阅读全文 -