What is the default behavior of this at the top level in ES6 Modules, as opposed to CommonJS modules?
- Lexical scoping
- Dynamic scoping
- No scoping
- Global scoping
In ES6 Modules, the this keyword behaves according to lexical scoping, meaning it retains the value of this from the surrounding scope. This is different from CommonJS modules, where this refers to the exports object.
Loading...
Related Quiz
- To export multiple features from a single module, use export { feature1, feature2 as _______ };.
- Can a generator function yield another generator function? If so, how is it achieved?
- Imagine processing a shopping cart array to calculate the total price. Which method would efficiently achieve this?
- In a function that accepts a variable number of arguments and needs to pass them to another function, how would the rest operator be applied?
- How does garbage collection in JavaScript affect WeakSet?