欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS中判断字符串存在和非空的方法

程序员文章站 2023-12-10 09:46:40
看到这个题目你是怎么想的呢?这个很简单啊,typeof 一下,再判断length。 if(typeof unknownvariable ==='string' &...

看到这个题目你是怎么想的呢?这个很简单啊,typeof 一下,再判断length。

if(typeof unknownvariable ==='string' && unknownvariable.length){
   ...
 }

搞定了吗?

如果这个字符串是用new string() 创建的会如何呢?typeof 这个未知变量肯定是 object。你会怎么办?
你肯定还得先判断类型,typeof unknownvariable==='object' ?但你得想还有一个null变量的 typeof 值也是 object。那是不是还得 && unknownvariable 一下?现在就是一个非空对象了,接着要不要判断一下length?应该不用了。但最后 typeof 是 object 的不一定是字符串对象啊,可以是别的对象,如数组、json对象、new 出来的别的对象等等。要怎么办呢?

这就要上一个很少用到但有用的方法了:valueof。valueof 会以变量原始类型的形式进行输出。

let str1="test"
  let str2=new string('test2')
  let arr1=[1,2,3]
  let fn1=function(){
    console.log('this is a function')
  }
  let obj1={
    name:'gpd'
  }
  let obj2=new object()
  obj2.name='gpd' 
  str1.valueof() // "test"
  str2.valueof() //"test2"
  arr1.valueof() //[1,2,3]
  fn1.valueof() //fn1(){}
  obj1.valueof() // {name:"gpd"}
  obj2.valueof() // {name:"gpd"}

所以,无论你是字符串字面量还是new string 得到的一个字符串对象,它的valueof值都是一个字符串字面量。然后,它的typeof 值都是 string 。

所以最后的判断的是

if(typeof unknownvariable !=undefined 
  && unknownvariable 
  && typeof unknowvariable.valueof() === "string")
  {
    ...
  }