1、数据类型:原始类型(primitive type) 和对象类型(object type)
console.log("hello world".length);
console.log("this a string".indexOf("a"));
console.log(new String("hello world").length);
console.log(new String("this a string").indexOf("a"));
var a1 = "test",
a2=new String("test");
console.log(a1 == a2);//true
console.log(a1 === a2);//false
test.a = "hello"; //隐式创建包装对象,用完即时销毁
console.log(test.a); //undefined 新创建一个包装对象,未初始化
//不推荐使用种方法
var example = "this is a example";
//推荐使用这种方法,提升性能。
var example2 = new String("this is a example");
var now = new Date();
typeof(now + 1); //将日期转换为字符串 (字符串的拼接)
typeof(now - 1); //使用对象到数字的转换
now == now.toString() //true:隐式和显式的字符串转换
now > (now - 1) //将日期转换为数字(隐式)
var trueval = 1; //声明一个全局变量
fakeval = 2; //创建一个全局变量
this.fackval2 = 3; //同上
delete trueval //false 变量没有被删除
delete fakeval //true 变量被删除
delete this.fackval2 //true 变量被删除
原文:https://www.cnblogs.com/tonysmile/p/9539127.html