最后两个是什么意思?

来源:7-12 Math对象

滢芷

2016-11-09 21:23

返回源代码toSorce();

Math对象的原始值valueOf();

写回答 关注

2回答

  • 慕尼黑7016646
    2017-12-15 13:12:59

    toSource()只对firefox有效

  • 擅长写Bug
    2016-11-09 22:17:07

    toSource():

    假设你创建了一个学生对象:

    var student=new Student("张三","18");

    document.write(student.toSource());

    student.toSource()输出:

    ({name:"张三", age:"18"})


    value()方法;

    假设你声明了一个Boolean对象:

    var b =  new Boolean(false);
    document.write(b.valueOf());

    b.valueOf()输出:

    false


    慕尼黑701...

    这两个和Math有什么关系?

    2017-12-15 13:15:48

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题