旅游网站名称设计,线上运营推广工作内容,西安网站建设哪家比较好,wordpress安装插件1.typeof
typeof运算符返回的结果是以小写的字符串表示的变量的类型 2.instanceof
instanceof运算符用于判断右边构造函数的原型对象是否在左边对象的原型链上 let arr[]let obj{}let datenew Dateconsole.log(arr instanceof Array)console.log(arr instanceof Object)conso…1.typeof
typeof运算符返回的结果是以小写的字符串表示的变量的类型 2.instanceof
instanceof运算符用于判断右边构造函数的原型对象是否在左边对象的原型链上 let arr[]let obj{}let datenew Dateconsole.log(arr instanceof Array)console.log(arr instanceof Object)console.log(arr instanceof RegExp)console.log(obj instanceof Array)console.log(obj instanceof Object)console.log(obj instanceof RegExp)console.log(date instanceof Array)console.log(date instanceof Object)console.log(date instanceof Date)