https://github.com/mallikarjuna00g/javascriptlearning_001
Learning/practising Javascript with the book [Eloquent JavaScript 4th edition (2024) written by Marijn Haverbeke](https://eloquentjavascript.net/index.html).
https://github.com/mallikarjuna00g/javascriptlearning_001
eloquent-javascript javascript
Last synced: about 2 months ago
JSON representation
Learning/practising Javascript with the book [Eloquent JavaScript 4th edition (2024) written by Marijn Haverbeke](https://eloquentjavascript.net/index.html).
- Host: GitHub
- URL: https://github.com/mallikarjuna00g/javascriptlearning_001
- Owner: Mallikarjuna00G
- Created: 2025-01-04T11:04:34.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-02-15T21:45:13.000Z (3 months ago)
- Last Synced: 2025-02-15T22:26:53.064Z (3 months ago)
- Topics: eloquent-javascript, javascript
- Language: JavaScript
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JavascriptLearning_001
Learning/practising Javascript with the book
[Eloquent JavaScript 4th edition (2024) written by Marijn Haverbeke](https://eloquentjavascript.net/index.html).---
**Note:** Running the scripts using `node`
`node .js`
```
$ node --version
v18.19.0
```---
## Chapters
0. Introduction
### (Part 1: Language)
1. Values, Types, and Operators
2. [Program Structure](./jsMHch02/)
3. [Functions](./jsMHch03/)
4. [Data Structures: Objects and Arrays](./jsMHch04/)
5. [Higher-order Functions](./jsMHch05/)
6. [The Secret Life of Objects](./jsMHch06/)
7. [Project: A Robot](./jsMHch07/)
8. Bugs and Errors
9. Regular Expressions
10. Modules
11. Asynchronous Programming
12. Project: A Programming Language### (Part 2: Browser)
13. JavaScript and the Browser
14. The Document Object Model
15. Handling Events
16. Project: A Platform Game
17. Drawing on Canvas
18. HTTP and Forms
19. Project: A Pixel Art Editor### (Part 3: Node)
20. Node.js
21. Project: Skill-Sharing Website