Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2025 winter #232

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
222 changes: 111 additions & 111 deletions Skills/JavaScript.md
Original file line number Diff line number Diff line change
@@ -1,122 +1,122 @@
## JavaScript

- Language
- `Object`
- `Function`
- `Boolean`
- `Number`
- `BigInt`
- `String`
- `Symbol`
- `Infinity`
- `NaN`
- `undefined`
- `null`
- `this`
- `instanceof`
- `...spread`
- `...rest`
- `typeof`
- Destructuring
- Generators
- Iterators
- Async generator
- Async iterator
- Chaining
- Optional chaining
- IIFE
- Async IIFE
- `Object`u
- `Function`u
- `Boolean`u
- `Number`u
- `BigInt`u
- `String`u
- `Symbol`u
- `Infinity`u
- `NaN`u
- `undefined`u
- `null`u
- `this`u
- `instanceof`u
- `...spread`u
- `...rest`u
- `typeof`u
- Destructuring u
- Generators u
- Iterators u
- Async generator h
- Async iterator h
- Chaining u
- Optional chaining h
- IIFE
- Async IIFE
- `global`
- `globalThis`
- `window`
- Getters and setters
- `__proto__`
- `prototype`
- Equality operators
- Logical operators
- Logical Assignment
- Bitwise operators
- Ternary operator
- `void`
- `yield`
- `await`
- Template literal
- Strict mode
- Hoisting
- `delete`
- `in`
- `super`
- `eval`
- `static`
- `Number.parseInt`
- `Number.parseFloat`
- Property descriptors
- Sealing properties
- Freezing properties
- Computed properties
- Instance class fields
- Static class fields
- Private class fields
- Private class methods
- `window` u
- Getters and setters u
- `__proto__` k
- `prototype` k
- Equality operators u
- Logical operators u
- Logical Assignment u
- Bitwise operators u
- Ternary operator u
- `void` h
- `yield`
- `await` u
- Template literal u
- Strict mode u
- Hoisting u
- `delete` u
- `in` u
- `super` u
- `eval` u
- `static` u
- `Number.parseInt` u
- `Number.parseFloat` u
- Property descriptors
- Sealing properties
- Freezing properties
- Computed properties h
- Instance class fields u
- Static class fields u
- Private class fields u
- Private class methods u
- Statements
- `if`
- `while`
- `do..while`
- `for`
- `for..in`
- `for..of`
- `for await`
- `throw`
- `break`
- `continue`
- `import`
- `export`
- `label`
- `try..catch`
- `switch`
- `class`
- `extends`
- `with`
- `new`
- `if` u
- `while` u
- `do..while` u
- `for` u
- `for..in` u
- `for..of` u
- `for await` u
- `throw` u
- `break` u
- `continue` u
- `import` u
- `export` u
- `label` h
- `try..catch` u
- `switch` u
- `class` u
- `extends` u
- `with` h
- `new` u
- Functions
- Arrow function
- Async function
- Function declaration
- Function expression
- Default parameters
- Functional object
- `Function.prototype.call`
- `Function.prototype.bind`
- `Function.prototype.apply`
- `return`
- Arrow function u
- Async function u
- Function declaration u
- Function expression u
- Default parameters u
- Functional object u
- `Function.prototype.call` k
- `Function.prototype.bind` k
- `Function.prototype.apply` k
- `return` u
- Data structures
- `Array`
- `Map`
- `Set`
- `WeakMap`
- `WeakSet`
- `Array` u
- `Map` u
- `Set` u
- `WeakMap` h
- `WeakSet` h
- Typed arrays
- Mixins
- `Object.assign`
- Mixins h
- `Object.assign` k
- Standard classes and namespaces
- `Proxy`
- `RegExp`
- `Date`
- `Math`
- `Reflect`
- `Error`
- `Atomics`
- `JSON`
- `WeakRef`
- `FinalizationRegistry`
- `Intl`
- `Promise`
- `console`
- Timers
- `Proxy` h
- `RegExp` u
- `Date` u
- `Math` u
- `Reflect`
- `Error` u
- `Atomics` h
- `JSON` u
- `WeakRef`
- `FinalizationRegistry` h
- `Intl` h
- `Promise` u
- `console` u
- Timers u
- Infrastructure
- V8
- Node.js
- npm
- prettier
- MDN
- TC39
- V8 k
- Node.js u
- npm u
- prettier k
- MDN u
- TC39
10 changes: 5 additions & 5 deletions Skills/NodeJS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
- I/O-bound, CPU-bound, memory-bound tasks
- Interactive applications (close to real-time)
- Modularity, layers and dependencies
- CommonJS modules
- ECMAScript modules
- CommonJS modules u
- ECMAScript modules u
- Module `node:module`
- Caching in CJS and ESM
- Modules as singletons
- Contexts and scripts module `node:vm`
- Dependencies: `npm`, `node_modules`
- Files `package.json`, `package-lock.json`
- Dependencies: `npm`, `node_modules` u
- Files `package.json`, `package-lock.json` u
- Module-based permissions model
- Isolation with modularity
- Dependency injection
Expand Down Expand Up @@ -77,7 +77,7 @@
- Long polling
- REST
- RPC
- Routing
- Routing
- DoS
- DDoS
- XSS
Expand Down
Loading