代码中的'2e4'是什么意思

时间:2013-04-25 07:56:45

标签: javascript raphael

此示例http://raphaeljs.com/gear.html 有以下代码:

function run() {
                e.animate({along: 1}, 2e4, function () {
                    e.attr({along: 0});
                    setTimeout(run);
                });
            }

本例中“2e4”的含义及其工作原理是什么?

2 个答案:

答案 0 :(得分:12)

表示2 * 10 ^ 4
并在您的控制台2e4中尝试,输出将为20000

escientific符号

代码等同于

...
e.animate({along: 1}, 20000, function () { ....

答案 1 :(得分:4)

对于2e4

2 * 10^4scientific notation,因此其值与20000相同。