标签:typeof 浅拷贝和深拷贝 ons symbol 遇到 eee log console 方式
JS 中分为七种内置类型
,七种内置类型又分为两大类型:基本类型和对象(Object)。
基本类型有六种: null,undefined,boolean,number,string,symbol。
其中 JS 的数字类型是浮点类型的,没有整型。并且浮点类型基于 IEEE 754标准实现,在使用中会遇到某些 Bug。NaN 也属于 number 类型,并且 NaN 不等于自身。
对于基本类型来说,如果使用字面量的方式,那么这个变量只是个字面量,只有在必要的时候才会转换为对应的类型
let a = 111 // 这只是字面量,不是 number 类型
a.toString() // 使用时候才会转换为对象类型
对象(Object)是引用类型,在使用过程中会遇到浅拷贝和深拷贝的问题。
let a = { name: ‘FE‘ }
let b = a
b.name = ‘EF‘
console.log(a.name) // EF
typeof 对于基本类型,除了 null 都可以显示正确的类型
typeof 1 // ‘number‘
typeof ‘1‘ // ‘string‘
typeof undefined // ‘undefined‘
typeof true // ‘boolean‘
typeof Symbol() // ‘symbol‘
typeof b // b 没有声明,但是还会显示 undefined
标签:typeof 浅拷贝和深拷贝 ons symbol 遇到 eee log console 方式
原文地址:https://www.cnblogs.com/yiquan/p/10265021.html