How do arrow functions behave differently from traditional functions in terms of hoisting?
- Arrow functions are not hoisted
- Arrow functions are hoisted with their entire body
- Arrow functions are hoisted but only the function declaration
- Arrow functions are hoisted with their parameters
Arrow functions are not hoisted, unlike traditional functions. They must be defined before they are used. Option A is correct.
Loading...
Related Quiz
- What method is used to resume the execution of a generator function?
- In ES6, what is the role of the 'package.json' file in module resolution?
- How does ES6 handle importing a module that is located in a node_modules folder?
- What is the main difference between default and named exports in ES6 modules?
- If a module exports several named items, how can you import all of them at once?