判断对象oStringObject是否为String


1.操作符

(1)typeof操作符

格式:result=typeof variable

返回值:

undefined 值未定义

boolean 布尔值

string 字符串

number 数值

object 对象、null

function 函数

(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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM