JS面向对象 发表于 2018-04-16 面向对象自定义对象原型链prototype是函数对象的属性,People.prototype是原型对象它指向函数本身原型很大一部分作用是用来继承的 12345678910function People(){}function Student(){}//Student继承PeopleStudent.prototype = new People(); Math对象使用时不需要初始化,直接调用Math. Math对象的方法Math.floor() ; 向下取整 Math.ceil() ; 向上取整 Math.random() ;[0~1),随机数,浮点型 浮点数的精确toFixed(1); 精确一位