JS面向对象

面向对象

自定义对象

原型链

prototype是函数对象的属性,People.prototype是原型对象它指向函数本身
原型很大一部分作用是用来继承的

1
2
3
4
5
6
7
8
9
10
function People(){
}
function Student(){
}
//Student继承People
Student.prototype = new People();

Math对象

使用时不需要初始化,直接调用Math.

Math对象的方法

Math.floor() ; 向下取整

Math.ceil() ; 向上取整

Math.random() ;[0~1),随机数,浮点型

浮点数的精确
toFixed(1); 精确一位