No description
Find a file
Ilya Kantor dc28f1616f Merge pull request #173 from shmidtkirill/patch-8
Changed index for "for...in" loop
2015-10-22 20:08:06 +03:00
1-js Changed index for "for...in" loop 2015-10-19 17:40:50 +03:00
2-ui pics 2015-08-25 19:44:32 +03:00
3-webcomponents typos 2015-06-07 21:48:08 +03:00
4-ajax pics 2015-08-25 19:44:32 +03:00
5-animation working on promises 2015-07-03 10:35:12 +03:00
6-optimize promise 2015-07-04 11:11:35 +03:00
7-frames-and-windows typos 2015-06-07 21:48:08 +03:00
8-css-for-js working on promises 2015-07-03 10:35:12 +03:00
9-tools fix many typos 2015-04-23 12:31:37 +03:00
10-regular-expressions-javascript working on promises 2015-07-03 10:35:12 +03:00
11-extra minor 2015-05-07 14:29:08 +03:00
archive http -> https fixes 2015-04-19 15:46:22 +03:00
script renovations 2015-02-21 14:58:02 +03:00
.gitignore minor 2015-03-15 15:29:15 +03:00
changes.sketch renovations 2015-04-05 23:59:54 +03:00
figures.sketch up 2015-09-24 15:02:57 +02:00
index.md refactor 3-more into separate books 2015-02-27 13:21:58 +03:00
README.md ok 2015-08-15 14:05:29 +03:00

The JavaScript Tutorial

This repository hosts the content of the JavaScript Tutorial, to be available on https://javascript.info.

The backend is written using io.js. It is in the separate repo: https://github.com/iliakan/javascript-nodejs, here is the text only.

Please use this repository to file issues and suggest PRs for the text.

Structure

Every chapter, article or task has it's folder.

The folder has the name N-url, where N is a number for the sorting and url — is the URL-address for the material.

The kind of the material is defined by the file inside the folder:

  • index.md means a chapter
  • article.md means an article
  • task.md means a task (+must also have solution.md with the solution)

Each of these files starts from the # Main header.

Assets required for the material are in it's folder and can be referenced from the file.

For example, an image.png for the article should be in it's folder and accessed as <img src="image.png"> from it's article.md file.