码迷,mamicode.com
首页 > 其他好文 > 详细

判断对象oStringObject是否为String

时间:2017-09-09 19:01:35      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:strong   bsp   undefined   false   gobject   布尔   lower   字符串   boolean   

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

 

判断对象oStringObject是否为String

标签:strong   bsp   undefined   false   gobject   布尔   lower   字符串   boolean   

原文地址:http://www.cnblogs.com/liuzhenping/p/7498941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!