字符串和字符串实例的区别
2018-04-11 本文已影响0人
洋洋袁
两种方式:
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;