Dieses Projekt ist eine umfassende Bildungsreihe, die ein tiefes technisches Verständnis der Programmiersprache JavaScript vermitteln soll. Es fungiert als mehrbändiger Lehrplan, der Entwickler durch die Kernmechanismen, Ausführungsmodelle und zugrunde liegenden Spezifikationen führt, die definieren, wie die Sprache auf fundamentaler Ebene funktioniert.
Die Hauptfunktionen von getify/you-dont-know-js sind: Computer Science Curricula, Language Fundamentals, Conceptual Programming Resources, Language Internals Guides, Language Reference Manuals, Technical Book Series, Execution Models, Execution Contexts.
Open-Source-Alternativen zu getify/you-dont-know-js sind unter anderem: airbnb/javascript — This project provides a comprehensive set of coding standards and style guidelines for JavaScript development. It… ryanmcdermott/clean-code-javascript — This project is a collection of engineering guidelines and best practices for writing readable and maintainable… drksephy/es6-cheatsheet — This project is a JavaScript ES6 reference guide and syntax cheatsheet. It serves as an ECMAScript language guide… mbeaudru/modern-js-cheatsheet — This project is a curated reference guide and cheatsheet for modern JavaScript development. It provides a collection… leonardomso/33-js-concepts — This project is a comprehensive educational repository designed to help developers master the core mechanics, runtime… sindresorhus/awesome — This project is a community-maintained directory that serves as a comprehensive index of software tools, frameworks,…
This project provides a comprehensive set of coding standards and style guidelines for JavaScript development. It covers fundamental language syntax, formatting conventions, and best practices for managing variables, functions, objects, and modern language features. The documentation serves as a reference for maintaining consistent code quality across projects. In addition to general language standards, the guide includes specific conventions for building and organizing user interface components. These guidelines address structural patterns, component lifecycle management, and stylistic rules
This project is a collection of engineering guidelines and best practices for writing readable and maintainable JavaScript source code. It serves as a clean code guide and refactoring manual to help developers improve the structure of their codebases. The repository provides a reference for applying SOLID principles to reduce coupling and enable extensions without modifying existing logic. It includes a naming convention standard for using explicit, searchable identifiers and a guide for asynchronous patterns to replace nested callbacks with clearer execution flows. The guidelines cover soft
This project is a JavaScript ES6 reference guide and syntax cheatsheet. It serves as an ECMAScript language guide providing technical examples and a curated list of tips for implementing modern JavaScript patterns. The guide covers a wide range of language features, including the use of classes for object blueprints, module systems for code organization, and arrow functions to preserve execution context. It provides instructions on utilizing block-scoped variables, template literals for string interpolation, and destructuring for nested data extraction. The reference also addresses asynchron
This project is a curated reference guide and cheatsheet for modern JavaScript development. It provides a collection of syntax and patterns covering ECMAScript standards, specifically focusing on contemporary language features from ES6 and later. The resource offers specialized guides on asynchronous JavaScript, functional programming patterns, and object-oriented design. It details the use of promises and async/await syntax for non-blocking operations, as well as the application of map, filter, and reduce for data transformation. The guide covers a broad range of language fundamentals, incl