12 2019 档案
摘要:基础类型有哪些? 基本类型有七种 null undefined boolean number string symbol(较新标准) BigInt(新标准) NaN 也属于 number 类型,并且 NaN 不等于自身; 基础类型的特性是什么? 基本类型的值是保存在栈内存中的简单数据段 基础类型是不
阅读全文
摘要:const dom = document.querySelector('.content') const data = '最简单的打字效果代码'.split('') let index = 0 function writing(index) { if (index < data.length) {
阅读全文