1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +02:00

[javascript pt-br] : Leitura Adicional

This commit is contained in:
willianjusten
2015-10-03 14:03:54 -03:00
parent 466b51d9fa
commit 46d509077f

View File

@@ -521,30 +521,31 @@ if (Object.create === undefined){ // don't overwrite it if it exists
} }
``` ```
## Further Reading ## Leitura Adicional
The [Mozilla Developer O [Mozilla Developer
Network](https://developer.mozilla.org/en-US/docs/Web/JavaScript) provides Network](https://developer.mozilla.org/en-US/docs/Web/JavaScript) dispõe de uma
excellent documentation for JavaScript as it's used in browsers. Plus, it's a excelente documentação sobre Javascript e seu uso nos browsers. E mais,
wiki, so as you learn more you can help others out by sharing your own é uma wiki, portanto conforme você vai aprendendo, mais você pode ir ajudando
knowledge. os outros compartilhando do seu conhecimento.
MDN's [A re-introduction to [Uma re-introdução do JavaScript pela MDN]
JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript) (https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript)
covers much of the concepts covered here in more detail. This guide has quite cobre muito dos conceitos abordados aqui em mais detalhes. Este guia fala
deliberately only covered the JavaScript language itself; if you want to learn somente sobre a linguagem JavaScript em si; se você quiser aprender mais
more about how to use JavaScript in web pages, start by learning about the sobre e como usar o JavaScript em páginas na web, comece aprendendo sobre
[Document Object [Document Object
Model](https://developer.mozilla.org/en-US/docs/Using_the_W3C_DOM_Level_1_Core) Model](https://developer.mozilla.org/en-US/docs/Using_the_W3C_DOM_Level_1_Core)
[Learn Javascript by Example and with Challenges](http://www.learneroo.com/modules/64/nodes/350) is a variant of this reference with built-in challenges. [Aprenda Javascript por Exemplos e com Desafios](http://www.learneroo.com/modules/64/nodes/350) é uma
variação desse guia com desafios.
[JavaScript Garden](http://bonsaiden.github.io/JavaScript-Garden/) is an in-depth [JavaScript Garden](http://bonsaiden.github.io/JavaScript-Garden/) é um guia
guide of all the counter-intuitive parts of the language. profundo de todas as partes do JavaScript.
[JavaScript: The Definitive Guide](http://www.amazon.com/gp/product/0596805527/) is a classic guide / reference book. [JavaScript: The Definitive Guide](http://www.amazon.com/gp/product/0596805527/) é o guia clássico
/ livro de referência.
In addition to direct contributors to this article, some content is adapted Parte desse artigo foi adaptado do tutorial de Python do Louie Dinh que está
from Louie Dinh's Python tutorial on this site, and the [JS nesse site e do [Tutorial de JS](https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript)
Tutorial](https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript) da Mozilla Developer Network.
on the Mozilla Developer Network.