__________ is a common pattern for dynamically loading modules based on user interactions.
- Lazy Loading
- Eager Loading
- Preloading
- Asynchronous Loading
Lazy loading is a common pattern in which modules are loaded only when they are actually needed, often based on user interactions or certain events, optimizing performance by loading resources on-demand.
Inside a template literal, the expression ${a + b} will __________ the values of a and b.
- Concatenate
- Add
- Multiply
- Evaluate
The expression ${a + b} inside a template literal will evaluate the values of 'a' and 'b'. It performs the specified operation (in this case, addition) and includes the result in the string.
_________ in ES6 Modules enables static analysis and optimization, a feature not present in CommonJS.
- Explicit Dependency Declaration
- Dynamic Dependency Resolution
- Tree Shaking
- Lazy Loading
Tree Shaking in ES6 Modules allows for the removal of unused code during the build process, leading to smaller bundle sizes. This feature is not available in CommonJS, highlighting the advantages of ES6 modules.
Can an arrow function have its own this context?
- Yes, it has its own this context
- No, it shares the this context with the surrounding code
- Yes, but it inherits the this context from the parent scope
- No, it always refers to the global object
Yes, an arrow function has its own this context, which means it does not bind its own this but retains the this value of the enclosing lexical scope. This behavior can be advantageous in certain scenarios.
Template literals are enclosed by ________ characters.
- Single backtick (`)
- Double quotes (")
- Single quotes (')
- Dollar sign ($)
Template literals in ES6 are enclosed by backticks (`). This allows for easy embedding of variables and expressions using ${}.
What role does the event loop play in asynchronous operations in JavaScript?
- It handles user interactions
- It executes code in a non-blocking way
- It manages DOM events
- It controls the flow of synchronous code
The event loop in JavaScript manages the execution of asynchronous tasks. It ensures that non-blocking code is processed efficiently, allowing the program to remain responsive. Understanding the event loop is crucial for writing efficient asynchronous JavaScript code.
What is a pure function in JavaScript?
- A function that has no side effects
- A function that modifies global variables
- A function that always returns the same output for the same input
- A function that has asynchronous operations
A pure function is a function that always produces the same output for the same input and has no side effects. It does not modify external state, and it does not rely on external state. This property makes pure functions predictable and easy to test.
Can static methods be called on instances of the class?
- Yes
- No
- It depends on how the static method is defined
- Only if the class is instantiated with the new keyword
Yes, static methods can be called on instances of the class. However, it is more common and recommended to call static methods on the class itself, as they are associated with the class, not with a specific instance.
How can you iterate over the elements of a Set in JavaScript?
- Using for...of loop, forEach method, map method, filter method
- forEach method, map method, for loop, for...in loop
- for loop, for...of loop, forEach method, map method
- for...of loop, forEach method, filter method, for loop
To iterate over the elements of a Set in JavaScript, you can use the for...of loop, which provides a concise and readable syntax for traversing the Set's values. Alternatively, you can also use the forEach method to execute a provided function once for each Set element, ensuring a clean and efficient iteration process.
A WeakSet only stores _________, and its elements are garbage collected when there is no other reference to them.
- Objects
- Primitives
- Arrays
- Functions
A WeakSet only stores objects, and its elements are garbage collected when there is no other reference to them. WeakSets are useful for holding "weak" references to objects, meaning they won't prevent an object from being garbage collected.