对象
/*字符串*/
//长度 length
console.log("123".length);
//字符串拼接 concat
console.log("123".concat("hello world"));
//字符串转number parseInt
console.log(typeof parseInt("123"));
//124
console.log(parseInt("123") + 1);
//如果不为数字则直接拼接 1232
console.log(parseInt("123") + "2");
//数字 toFixed 设置小数位数 结果3.33
console.log(3.3333.toFixed(2));
自定义对象
/*
1. 声明对象:function Person() { }
2. 创建对象:var p1 = new Person();
3. 设置属性:p1.name = "张飞"; p1.age = 18;
4. 设置方法:p1.run = function (a,b) {return a+b; }
*/
//声明一个对象
function Student() { }
//创建对象
let stu = new Student();
//动态的给对象绑定属性
stu.name = "Qianl";
stu.age = 18;
//动态绑定方法
stu.sum = function (x, y) {
return x + y;
}
//使用对象方法
let sum = stu.sum(2, 3);
console.log(stu);
console.log(sum);