Appearance
创建一个Number属性的对象
var num = new Number(333); num.name = "数字"; //给这个对象添加一个属性 console.log(num.name)
在实际开发中,不会使用基本数据类型的对象
使用可以不加new