顶啊,再来一个大神。 顶啊,再来一个大神。 顶啊,再来一个大神。
47 回复
@zcgg 半年node.js开发经验。 工作需要javaEE、android、node.js开发同时进行,学得不是那么深入,不过对node.js是真爱。
这个是我用node.js开发的开源项目,托管在github了 https://github.com/kissliux/rssSpider 。现在有几十个人关注
目前在深圳哦
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()