摘要: 一、基本数据类型 整数型 byte short int long 浮点型 float double 字符型 char 布尔型 boolean 注意事项:1. 字符串不是基本类型,而是引用类型。2. 浮点型可能只是一个近似值,并非精确的值。3. 数据范围与字节数不一定相关,例如float数据范围比lo 阅读全文
posted @ 2020-08-10 22:55 爱看星星的稻草人 阅读(150) 评论(0) 推荐(0) 编辑
摘要: let arr = [] 1. instanceof arr instanceof Array 2. __proto__ arr.__proto__ Array.prototype 3. constructor arr.constructor Array 4. Object.prototype.to 阅读全文
posted @ 2020-08-10 10:21 爱看星星的稻草人 阅读(135) 评论(0) 推荐(0) 编辑