https://github.com/chiedev/javascript-beginners
A simple guide for JavaScript beginners. Powered by GitHub Pages
https://github.com/chiedev/javascript-beginners
constructors exercise factories getters javascript object oop primitive-types private-properties properties reference-types setters
Last synced: 10 months ago
JSON representation
A simple guide for JavaScript beginners. Powered by GitHub Pages
- Host: GitHub
- URL: https://github.com/chiedev/javascript-beginners
- Owner: chiedev
- Created: 2020-06-11T17:30:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-05T13:59:28.000Z (over 5 years ago)
- Last Synced: 2025-01-23T02:12:46.479Z (12 months ago)
- Topics: constructors, exercise, factories, getters, javascript, object, oop, primitive-types, private-properties, properties, reference-types, setters
- Language: HTML
- Homepage: https://chiedev.github.io/javascript-beginners/
- Size: 152 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JavaScript Notes
A collection of JavaScript fundamentals definition and sample codes for beginners.
Reference(s): [Programming with Mosh](https://www.youtube.com/channel/UCWv7vMbMWH4-V0ZXdmDpPBA),
[JavaScript Tutorial](https://www.javascripttutorial.net/), [JavaScript Info](https://javascript.info/), [Code Burst](https://codeburst.io/), [Medium](https://medium.com/)
## What is JavaScript?
JavaScript is one of the most popular programming languages in 2019. A lot of people are learning JavaScript to become front-end and/or back-end developers.
Whether you're a beginner and want to learn to code, or you know any programming language and just want to learn JavaScript for web development, this tutorial helps you learn JavaScript fast.
If you want to become a front-end developer, you have to learn JavaScript. It is the programming language that every front-end developer must know.
Go to >>> [Homepage](https://chiedev.github.io/javascript-beginners/) <<<
## Object-Oriented Programming in JavaScript
- [What is an OOP?](https://chiedev.github.io/javascript-beginners/pages/what-is-an-oop.html)
- [Creating Objects](https://chiedev.github.io/javascript-beginners/pages/fundamentals/1_creating-objects.html)
- [Factories and Constructors](https://chiedev.github.io/javascript-beginners/pages/fundamentals/2_factories-constructors.html)
- [Primitives and Reference Types](https://chiedev.github.io/javascript-beginners/pages/fundamentals/3_primitives-reference_types.html)
- [Working with Properties](https://chiedev.github.io/javascript-beginners/pages/fundamentals/4_working-with-properties.html)
- [Private Properties](https://chiedev.github.io/javascript-beginners/pages/fundamentals/5_private-properties.html)
- [Getters and Setters](https://chiedev.github.io/javascript-beginners/pages/fundamentals/6_getters-setters.html)
- [Exercise](https://chiedev.github.io/javascript-beginners/pages/exercise.html)