JavaScript Info 1.1.1 - An introduction to JavaScript

JavaScript was created as a browser-only language to integrate with HTML/CSS. It positioned itself as a new language as a "younger brother" of the Java language popular at that time, but now it has its own specification called ECMAScript, and it is used not only in servers but also many other environments as well.

Features

Environments

Browser

In-browser JavaScript can do everything related to webpage manipulation, interaction with user and webserver, and browser local storage, but its capabilities on other things are restrained for the sake of users' safety.

Limitations

Server

Server-side JavaScript like Node.js supports functions to read/write arbitrary files, perform network requests, etc.

See also

←Previous Next→