nunnly / everycode

Javascript 每日一练
116 stars 26 forks source link

2015年3月3日 #41

Open nunnly opened 9 years ago

nunnly commented 9 years ago
//今天的题目好简单,一个挺有意思的Number,代码是JQ源码里面的一段,默认值
{name:"serverSentEvents",supportsKeepAlive:!0,timeOut:3e3,start:function(e,o,s){}}
//那么问题来了,求`3e3`的值
function getValue(){
  return //should return 3e3 value
}
VaJoy commented 9 years ago

e3表示1000,e4表示10000 eN表示10*N

这个@XadillaX 大神在解题的时候就用过了,见#19