All Projects → leonardomso → 33 Js Concepts

leonardomso / 33 Js Concepts

Licence: mit
📜 33 JavaScript concepts every developer should know.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to 33 Js Concepts

NamingThings
Content on tips, tricks, advice, practices for naming things in in software/technology
Stars: ✭ 31 (-99.93%)
Mutual labels:  programming, concepts
Daily Programming Challenges
Daily Programming Challenges
Stars: ✭ 98 (-99.78%)
Mutual labels:  programming
Dayasadev
📗 A course to teach non-technical team members what developers do 📗
Stars: ✭ 73 (-99.84%)
Mutual labels:  programming
100 Plus Python Programming Exercises Extended
100+ python programming exercise problem discussed ,explained and solved in different ways
Stars: ✭ 1,250 (-97.26%)
Mutual labels:  programming
Goexpertprogramming
《Go专家编程》Go语言快速入门,轻松进阶!
Stars: ✭ 1,193 (-97.38%)
Mutual labels:  programming
All school 42
| SCHOOL_42_UPDATE 2020 | This repository contains ALL PROJECTS, TASKS AND SUBJECTS OF THE MAIN PROGRAM OF LEARNING AT SCHOOL 42 ( Program | Course | Programing | Coding | School 42 | Ecole 42 | School 21 | Школа 42 | Школа 21 ). Этот репозиторий содержит все проекты и задания основной программы обучения Школы 42 и Школы 21
Stars: ✭ 87 (-99.81%)
Mutual labels:  programming
Programming Exercises
Programming Exercises about Interesting Topics
Stars: ✭ 67 (-99.85%)
Mutual labels:  programming
Coq Ext Lib
A library of Coq definitions, theorems, and tactics. [[email protected],@liyishuai]
Stars: ✭ 102 (-99.78%)
Mutual labels:  programming
Interview Preparation Kit
Interview preparation kit of hackerrank solutions
Stars: ✭ 94 (-99.79%)
Mutual labels:  programming
Sortingalgorithm.hayateshiki
Hayate-Shiki is an improved merge sort algorithm with the goal of "faster than quick sort".
Stars: ✭ 84 (-99.82%)
Mutual labels:  programming
Tello Nodejs
Interacting with the DJI/Ryze Tello using only node.js
Stars: ✭ 79 (-99.83%)
Mutual labels:  programming
Ds Cheatsheets
List of Data Science Cheatsheets to rule the world
Stars: ✭ 9,452 (-79.25%)
Mutual labels:  programming
Acm Icpc Algorithms
Algorithms used in Competitive Programming
Stars: ✭ 1,281 (-97.19%)
Mutual labels:  programming
100projectsofcode
A list of practical knowledge-building projects.
Stars: ✭ 1,183 (-97.4%)
Mutual labels:  programming
Awesome Courses
😏 📄 An awesome list of educational websites, YouTube playlists, channels and books about programming
Stars: ✭ 99 (-99.78%)
Mutual labels:  programming
Learn Vim
Vim 实操教程(Learning Vim)Vim practical tutorial.
Stars: ✭ 1,166 (-97.44%)
Mutual labels:  programming
Songtianyi.github.io
blog pages
Stars: ✭ 77 (-99.83%)
Mutual labels:  programming
Intror
这是一本中文 R 语言入门书,基于最新 tidyverse 包。
Stars: ✭ 86 (-99.81%)
Mutual labels:  programming
Letters
Письма к студентам курса
Stars: ✭ 107 (-99.77%)
Mutual labels:  programming
Utopian.io
Utopian.io Frontend - Utopian wants to reward open-source contributors!
Stars: ✭ 101 (-99.78%)
Mutual labels:  programming


33 Concepts Every JS Developer Should Know

33 Concepts Every JavaScript Developer Should Know

Follow me

Introduction

This repository was created with the intention of helping developers master their concepts in JavaScript. It is not a requirement, but a guide for future studies. It is based on an article written by Stephen Curtis and you can read it here.

🚀 Considered by GitHub as one of the top open source projects of 2018!

Community

Feel free to submit a PR adding a link to your own recaps or reviews. If you want to translate the repo into your native language, please feel free to do so.

All the translations for this repo will be listed below:


Table of Contents

  1. Call Stack
  2. Primitive Types
  3. Value Types and Reference Types
  4. Implicit, Explicit, Nominal, Structuring and Duck Typing
  5. == vs === vs typeof
  6. Function Scope, Block Scope and Lexical Scope
  7. Expression vs Statement
  8. IIFE, Modules and Namespaces
  9. Message Queue and Event Loop
  10. setTimeout, setInterval and requestAnimationFrame
  11. JavaScript Engines
  12. Bitwise Operators, Type Arrays and Array Buffers
  13. DOM and Layout Trees
  14. Factories and Classes
  15. this, call, apply and bind
  16. new, Constructor, instanceof and Instances
  17. Prototype Inheritance and Prototype Chain
  18. Object.create and Object.assign
  19. map, reduce, filter
  20. Pure Functions, Side Effects, State Mutation and Event Propagation
  21. Closures
  22. High Order Functions
  23. Recursion
  24. Collections and Generators
  25. Promises
  26. async/await
  27. Data Structures
  28. Expensive Operation and Big O Notation
  29. Algorithms
  30. Inheritance, Polymorphism and Code Reuse
  31. Design Patterns
  32. Partial Applications, Currying, Compose and Pipe
  33. Clean Code

1. Call Stack

Reference

Articles

Videos

Back to Top


2. Primitive Types

Reference

Articles

Videos

Back to Top


3. Value Types and Reference Types

Articles

Videos

Back to Top


4. Implicit, Explicit, Nominal, Structuring and Duck Typing

Articles

Videos

Books

Back to Top


5. == vs === vs typeof

Articles

Videos

Back to Top


6. Function Scope, Block Scope and Lexical Scope

Books

Articles

Videos

Back to Top


7. Expression vs Statement

Articles

Videos

Back to Top


8. IIFE, Modules and Namespaces

Articles

Videos

Back to Top


9. Message Queue and Event Loop

Articles

Videos

Back to Top


10. setTimeout, setInterval and requestAnimationFrame

Articles

Videos

Back to Top


11. JavaScript Engines

Articles

Videos

Back to Top


12. Bitwise Operators, Type Arrays and Array Buffers

Articles

Videos

Back to Top


13. DOM and Layout Trees

Books

Articles

Videos

Back to Top


14. Factories and Classes

Articles

Videos

Back to Top


15. this, call, apply and bind

Reference

Articles

Videos

Back to Top


16. new, Constructor, instanceof and Instances

Articles

Back to Top


17. Prototype Inheritance and Prototype Chain

Reference

Articles

Videos

Books

Back to Top


18. Object.create and Object.assign

Reference

Articles

Videos

Back to Top


19. map, reduce, filter

Articles

Videos

Back to Top


20. Pure Functions, Side Effects, State Mutation and Event Propagation

Articles

Videos

Back to Top


21. Closures

Reference

Articles

Videos

Back to Top


22. High Order Functions

Books

Articles

Videos

Back to Top


23. Recursion

Articles

Videos

Back to Top


24. Collections and Generators

Reference

Articles

Videos

Back to Top


25. Promises

Reference

Articles

Videos

Back to Top


26. async/await

Reference

Books

Articles

Videos

Back to Top


27. Data Structures

Articles

Videos

Back to Top


28. Expensive Operation and Big O Notation

Articles

Videos

Back to Top


29. Algorithms

Articles

Back to Top


30. Inheritance, Polymorphism and Code Reuse

Reference

Articles

Videos

Back to Top


31. Design Patterns

Books

Articles

Videos

Back to Top


32. Partial Applications, Currying, Compose and Pipe

Books

Articles

Videos

Back to Top


33. Clean Code

Articles

Videos

Back to Top

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].