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

added skills #240

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
144 changes: 72 additions & 72 deletions Skills/JavaScript.md
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
## 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
- `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
- `global`
- `globalThis`
- `window`
- Getters and setters
- `__proto__`
- `prototype`
- `__proto__` +
- `prototype` +
- Equality operators
- Logical operators
- Logical Assignment
- Logical operators +
- Logical Assignment +
- Bitwise operators
- Ternary operator
- `void`
- `void` +
- `yield`
- `await`
- `await` +
- Template literal
- Strict mode
- Hoisting
- `delete`
- `in`
- Hoisting +
- `delete` +
- `in` +
- `super`
- `eval`
- `static`
- `Number.parseInt`
- `Number.parseFloat`
- `static` +
- `Number.parseInt` +
- `Number.parseFloat` +
- Property descriptors
- Sealing properties
- Freezing properties
Expand All @@ -59,64 +59,64 @@
- Private class fields
- Private class methods
- 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` +
- `while` +
- `do..while` +
- `for` +
- `for..in` +
- `for..of` +
- `for await` +
- `throw` +
- `break` +
- `continue` +
- `import` +
- `export` +
- `label` +
- `try..catch` +
- `switch` +
- `class` +
- `extends` +
- `with` +
- `new` +
- Functions
- Arrow function
- Async function
- Arrow function +
- Async function +
- Function declaration
- Function expression
- Default parameters
- Functional object
- `Function.prototype.call`
- `Function.prototype.bind`
- `Function.prototype.apply`
- `return`
- `return` +
- Data structures
- `Array`
- `Map`
- `Set`
- `Array` +
- `Map` +
- `Set` +
- `WeakMap`
- `WeakSet`
- Typed arrays
- Mixins
- `Object.assign`
- Standard classes and namespaces
- Standard classes and namespaces
- `Proxy`
- `RegExp`
- `Date`
- `Math`
- `Date` +
- `Math` +
- `Reflect`
- `Error`
- `Atomics`
- `JSON`
- `Error` +
- `Atomics` +
- `JSON` +
- `WeakRef`
- `FinalizationRegistry`
- `Intl`
- `Promise`
- `console`
- `Promise` +
- `console` +
- Timers
- Infrastructure
- V8
- Node.js
- npm
- prettier
- Node.js ~
- npm +
- prettier +
- MDN
- TC39