https://github.com/symonk/learning-js
Cross training materials from learning `javascript`
https://github.com/symonk/learning-js
Last synced: about 2 months ago
JSON representation
Cross training materials from learning `javascript`
- Host: GitHub
- URL: https://github.com/symonk/learning-js
- Owner: symonk
- License: apache-2.0
- Created: 2024-01-21T12:27:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-22T20:34:54.000Z (over 1 year ago)
- Last Synced: 2025-02-08T20:47:32.076Z (3 months ago)
- Language: JavaScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#### Learning Javascript
---
A simple repository for documenting and learning the basic functionality of `javascript`. If you are interested
in learning `golang` also check out my learning-golang module [here](https://www.github.com/symonk/learning-golang)---
### Table Of Contents:
- Fundamentals
- [Hello World](01_fundamentals/01_hello_world.js)
- [Statements](01_fundamentals/02_statements.js)
- [Use Strict Declaration](01_fundamentals/03_use_strict.js)
- [Variables](01_fundamentals/04_variables.js)
- [Data Types](01_fundamentals/05_data_types.js)
- [Alert, Prompt, Confirm](01_fundamentals/06_alert_prompt_confirm.js)
- [Type Conversions](01_fundamentals/07_type_conversions.js)
- [Basic Operators](01_fundamentals/08_basic_operators.js)
- [Comparisons](01_fundamentals/09_comparisons.js)
- [Conditional Branching](01_fundamentals/10_conditional_branching.js)
- [Logical Operators](01_fundamentals/11_logical_operators.js)
- [Nullish Coelscing](01_fundamentals/12_nullish_coalescing.js)
- [Loops, While & For](01_fundamentals/13_loops_while_and_for.js)
- [Switch & Case](01_fundamentals/14_switch_case.js)
- [Functions](01_fundamentals/15_functions.js)
- [Function Expressions](01_fundamentals/16_function_expressions.js)
- [Arrow Functions](01_fundamentals/17_arrow_functions.js)
- [Javascript Specials](01_fundamentals/18_arrow_functions.js)