diff options
author | Adam Brenecki <adam@brenecki.id.au> | 2013-06-30 17:33:10 +0930 |
---|---|---|
committer | Adam Brenecki <adam@brenecki.id.au> | 2013-06-30 17:33:10 +0930 |
commit | 600b5b5b741f6a8937b20f8f154362a125ce4e92 (patch) | |
tree | a80d4794d530914ecd561450cc045b4dbc1da8b8 /javascript.html.markdown | |
parent | cecd27b9df1ddf9bfc78ff8c01809492bfa3e5ba (diff) |
Added links to MDN, tidied intro
Diffstat (limited to 'javascript.html.markdown')
-rw-r--r-- | javascript.html.markdown | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/javascript.html.markdown b/javascript.html.markdown index c3bf131c..acac1795 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -5,8 +5,10 @@ author_url: http://adam.brenecki.id.au --- Javascript was created by Netscape's Brendan Eich in 1995. It was originally -intended as a simpler scripting language for web apps, complimenting Java for -more complex ones, but has become far more widely used than Java on the web. +intended as a simpler scripting language for websites, complimenting the use of +Java for more complex web applications, but its tight integration with Web pages +and built-in support in browsers has caused it to become far more common than +Java in web frontends. Feedback would be highly appreciated! You can reach me at [@adambrenecki](https://twitter.com/adambrenecki), or @@ -225,3 +227,11 @@ String.prototype.firstCharacter = function(){ "abc".firstCharacter() // = "a" ``` + +## Further Reading + +The [Mozilla Developer +Network](https://developer.mozilla.org/en-US/docs/Web/JavaScript) provides +excellent documentation for JavaScript as it's used in browsers. Plus, it's a +wiki, so as you learn more you can help others out by sharing your own +knowledge. |