Java Script!

This is my reading notes for Code Fellows.

Java Script!

What is Javascript?

JavaScript (JS) is a lightweight, interpreted, or just-in-time compiled programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB and Adobe Acrobat. JavaScript is a prototype-based, multi-paradigm, single-threaded, dynamic language, supporting object-oriented, imperative, and declarative (e.g. functional programming) styles.

How does JS fit into the web structure?

js

So what can it really do?

The core client-side JavaScript language consists of some common programming features that allow you to do things like:

What are API’s

Browser APIs are built into your web browser, and are able to expose data from the surrounding computer environment, or do useful complex things. For example:

Tools & resources

JS shells

Run JS


Input Output in plain JavaScript

JS io


Home