Alt text
顶啊,再来一个大神。 顶啊,再来一个大神。 顶啊,再来一个大神。
@zcgg 半年node.js开发经验。 工作需要javaEE、android、node.js开发同时进行,学得不是那么深入,不过对node.js是真爱。
这个是我用node.js开发的开源项目,托管在github了 https://github.com/kissliux/rssSpider 。现在有几十个人关注
目前在深圳哦
第一个点被认为浮点数的小数点,因为前面的是数字,数字后面跟小数点以为后面是小数点的尾数,其实可以这么做: <pre><code> var tmp = 123; console.log(tmp.toString()); </pre></code>
speakingjs 里面有说,
http://speakingjs.com/es5/ch11.html
Invoking Methods on Literals With number literals, the dot for accessing a property must be distinguished from the decimal dot. This leaves you with the following options if you want to invoke toString() on the number literal 123: 123...toString() 123 .toString() // space before the dot 123.0.toString() (123).toString()