摘要:
一、基本数据类型 整数型 byte short int long 浮点型 float double 字符型 char 布尔型 boolean 注意事项:1. 字符串不是基本类型,而是引用类型。2. 浮点型可能只是一个近似值,并非精确的值。3. 数据范围与字节数不一定相关,例如float数据范围比lo 阅读全文
摘要:
let arr = [] 1. instanceof arr instanceof Array 2. __proto__ arr.__proto__ Array.prototype 3. constructor arr.constructor Array 4. Object.prototype.to 阅读全文