TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

A re-introduction to JavaScript - MDC

82 点作者 samueladam大约 16 年前

7 条评论

simonw大约 16 年前
Cool, I wrote these notes up for a conference tutorial I gave a few years ago, glad to see they've taken on a useful life of their own.
评论 #603184 未加载
axod大约 16 年前
If you can't do anything without a book (Like me), get "JavaScript: The Definitive Guide by David Flanagan"<p>I know you can print things out and bind them but it's just not the same.
评论 #602987 未加载
评论 #602208 未加载
Hexstream大约 16 年前
Having almost no Javascript experience, I always thought the language looked messy but with this great introduction everything seems so clear.<p>I found an error:<p><pre><code> switch(1 + 3): case 2 + 2: yay(); break; default: neverhappens(); } </code></pre> The ":" after the first line should be a "{".
评论 #602166 未加载
svat大约 16 年前
This a good introduction, but Douglas Crockford's <i>A Survey of the JavaScript Programming Language</i> [<a href="http://javascript.crockford.com/survey.html" rel="nofollow">http://javascript.crockford.com/survey.html</a>] is shorter <i>and</i> more detailed — and a perfectly adequate introduction if you already know other programming languages.
samueladam大约 16 年前
credits to boucher: <a href="http://news.ycombinator.com/item?id=601926" rel="nofollow">http://news.ycombinator.com/item?id=601926</a>
Sephr大约 16 年前
It seems that the wiki page doesn't say anything about the `delete` and `let` operators. Those are very useful operators that should be read about. (just search `delete` or `let` on MDC)
评论 #602424 未加载
评论 #602507 未加载
评论 #602436 未加载
lut4rp大约 16 年前
Also on HN, <a href="http://javascript.infogami.com/Javascript_in_Ten_Minutes" rel="nofollow">http://javascript.infogami.com/Javascript_in_Ten_Minutes</a>, is another good article.