JavaScript
ποΈ Data types
What data types exist in modern JS
ποΈ Variables
In JavaScript, there are three keywords used to declare variables: var, let,
ποΈ Functions
Function Declarations, Function Expressions, and Arrow Functions
ποΈ Execution context
Execution context is the environment in which the JavaScript code is executed.
ποΈ The βthisβ Keyword
What is βthisβ keyword used for in JavaScript
ποΈ Function.prototype Methods
There are methods of Function prototype, they allow invoking a function with
ποΈ Arrays
Arrays in JavaScript are objects that optimized for storing and managing ordered
ποΈ Objects
Working with objects in JavaScript
ποΈ Closures
A closure is a function bundled together with its lexical environment, meaning
ποΈ Inheritance
Prototypal inheritance is a fundamental concept in JavaScript, where objects can
ποΈ Classes
Classes in JavaScript are a blueprint for creating objects with predefined
ποΈ Event Loop
Related Concepts
ποΈ Error Handling
Exceptions in JavaScript are events that disrupt the normal flow of code
ποΈ Regular Expressions
RegEx is a powerful tool used for matching patterns within strings.