判断对象oStringObject是否为String
生活随笔
收集整理的這篇文章主要介紹了
判断对象oStringObject是否为String
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
1.操作符
(1)typeof操作符
格式:result=typeof variable
返回值:
undefined 值未定義
boolean 布爾值
string 字符串
number 數(shù)值
object 對象、null
function 函數(shù)
(2)instanceof操作符
格式:result=variable instanceof constructor
返回值:
true
false
2.案例
function isString(str){return ( (str instanceof String) || (typeof str).toLowerCase()== 'string' );}var str1=new String('str1');var str2="str2";console.log(typeof str1);//object console.log(typeof str2);//string console.log(str1 instanceof String);//true console.log(str2 instanceof String);//false console.log(isString(str1));//true console.log(isString(str2));//true?
轉(zhuǎn)載于:https://www.cnblogs.com/liuzhenping/p/7498941.html
總結(jié)
以上是生活随笔為你收集整理的判断对象oStringObject是否为String的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 什么是网络驱动器?
- 下一篇: 网页版excel服务器,用excel当数