In ES6, a module imported via a relative path starting with ______ indicates it is located in the same directory.
- ./
- ../
- //
- \
When using a relative path in ES6 for module imports, ./ is used to indicate that the module is in the same directory as the importing module.
Loading...
Related Quiz
- In a logging function, how can default parameters be used to control the verbosity of the logs?
- Can template literals be used for multi-line string formatting?
- Consider a function that fetches user data from an API. How can this function be refactored to adhere to the principles of pure functions?
- In object methods, using arrow functions can lead to issues when relying on the this keyword, as it does not bind its own this, but inherits it from the ________ scope.
- The concept of ________ is essential in understanding how functions are combined in functional composition.