JavaScript: Difference between revisions

From OLPC
Jump to navigation Jump to search
(minor markup cleanup, mention http://billmill.org/static/canvastutorial/)
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:


==See also==
==See also==
* Online tutorials and editors
* http://billmill.org/static/canvastutorial/ - an interactive set of pages to learn JavaScript and <canvas> programming
** http://billmill.org/static/canvastutorial/ - an interactive set of pages to learn JavaScript and <canvas> programming, first few chapters work in [[Browse]]
** http://eloquentjavascript.net/ - Eloquent JavaScript interactive online book, does not work in Browse but works in [[Firefox]]
** http://tide4javascript.com/ - JavaScript Tiny Integrated Development Environment, 2.0 beta does not seem to work in Browse
* [[JS-Python]] - javascript
* [[JS-Python]] - javascript
* [[The call method in JavaScript]]
* [[The call method in JavaScript]]
Line 15: Line 18:
[[Category:Developers]]
[[Category:Developers]]
[[Category:Programming language]]
[[Category:Programming language]]
[[Category:Web browsers]]

Latest revision as of 04:32, 19 August 2009

  english | español HowTo [ID# 215155]  +/-  

JavaScript is a Lisp-like object-oriented language with a C-like syntax that was invented as part of the Netscape web browser. Although it has no relationship at all with Java, some marketing people decided that it would look better if Netscape could claim a feature named JavaScript.

The language was standardised by the ECMA under the name ECMAScript and this name is often used by open source advocates who wish to refer to the generic language, not one specific implementation.

The JavaScript engine from the Mozilla project is included in XULRunner which is part of the OLPC, and in Browse, the web browser activity built on XULRunner.

You can take a look at the project OLPCities. It's an open source, modular project using JavaScript (not Flash) for the creation of on line web applications having the GameBoy style. You can create "Lots" or a complete "City" having activities. There are tutorials available about how to do this. And there are a protopype that you can play not only at the OLPC station but at some browsers (IE, by example), NOW!

See also