两种方式:
var s1 = "1234";//string
var s2 = new String("1234");//object
一个是字符串一个是对象;
console.log(s1 instanceof String)// false;
console.log(s2 instanceof String) // true;
两种方式:
var s1 = "1234";//string
var s2 = new String("1234");//object
一个是字符串一个是对象;
console.log(s1 instanceof String)// false;
console.log(s2 instanceof String) // true;
本文标题:字符串和字符串实例的区别
本文链接:https://www.haomeiwen.com/subject/lpnahftx.html
网友评论