Does Arrow functions have their own `this`
No, arrow functions do not have their own `this`. Instead, they inherit the `this` of the enclosing lexical scope.
24개의 노트
No, arrow functions do not have their own `this`. Instead, they inherit the `this` of the enclosing lexical scope.
The Event loop has two main components: the Call stack and the Callback queue.
No, it is not possible to run 2 lines of code at the same time in JavaScript. JavaScript is a single-threaded language, which means that it can only e...
Yes, it is possible to run JavaScript outside the browser. There are several ways to run JavaScript outside the browser. You can use **Node.js**, **De...
JavaScript is an interpreted language. This means that the JavaScript code is not compiled before it is executed. Instead, the JavaScript engine inter...
No, you cannot access the DOM in Node.js because it does not have a DOM. It is a server-side runtime for JavaScript, so it does not have access to the...
Memory leaks happen when a program allocates memory but does not release it when it is no longer needed. This can happen due to bugs in the program or...
There are four fundamental strategies to report errors in Node.js:
Order priorities of `process.nextTick`, `Promise`, `setTimeout` and `setImmediate` are as follows:
No, arrow functions do not have their own `this`. Instead, they inherit the `this` of the enclosing lexical scope.
The Event loop has two main components: the Call stack and the Callback queue.
JavaScript is an interpreted language. This means that the JavaScript code is not compiled before it is executed. Instead, the JavaScript engine inter...
No, it is not possible to run 2 lines of code at the same time in JavaScript. JavaScript is a single-threaded language, which means that it can only e...
Yes, it is possible to run JavaScript outside the browser. There are several ways to run JavaScript outside the browser. You can use **Node.js**, **De...
No, you cannot access the DOM in Node.js because it does not have a DOM. It is a server-side runtime for JavaScript, so it does not have access to the...
There are four fundamental strategies to report errors in Node.js:
Memory leaks happen when a program allocates memory but does not release it when it is no longer needed. This can happen due to bugs in the program or...
Order priorities of `process.nextTick`, `Promise`, `setTimeout` and `setImmediate` are as follows:
Understanding React Fiber reconciliation engine
How React handles prop drilling and its downsides
Understanding the difference between Real DOM and Virtual DOM
How React Server Components handle data fetching
How to render React components as static HTML string
Understanding how React's Virtual DOM works