问答详情
源自:7-12 Math对象

最后两个是什么意思?

返回源代码toSorce();

Math对象的原始值valueOf();

提问者:滢芷 2016-11-09 21:23

个回答

  • 慕尼黑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