If an arrow function is written with a single expression, the return value is the result of the expression without using the ________ keyword.

  • Break
  • Return
  • Yield
  • Exit
In arrow functions, if the function body consists of a single expression, you can omit the curly braces {} and the return keyword. The return value will be the result of the expression automatically.

To access a parent class's method in a child class, the __________ keyword is used inside the method.

  • super
  • this
  • parent
  • extends
In JavaScript, the super keyword is used to refer to the parent class. When used inside a method in a child class, it allows you to call the corresponding method in the parent class. This is particularly useful for accessing and invoking the parent class's method from within the child class.

In ES6, what happens when two different modules import the same dependency?

  • Both modules share the same instance of the dependency
  • Each module gets its own instance of the dependency
  • The first module to import the dependency "owns" it, and the second module uses that instance
  • The second module to import the dependency "owns" it, and the first module uses that instance
In ES6, each module gets its own instance of a dependency when imported. This ensures encapsulation and prevents unintended sharing of state between modules. Even if multiple modules import the same dependency, they work with independent instances, providing isolation and avoiding potential conflicts. This behavior aligns with the modular and encapsulated nature of ES6 modules, contributing to better code organization and maintainability.

Consider a library that needs to add unique identifiers to objects without risk of property clashes. How would Symbols be utilized in this case?

  • Using string identifiers
  • Using Symbols as unique identifiers
  • Using numbers as identifiers
  • Using object literals with unique keys
The correct option is using Symbols as unique identifiers. Symbols provide a way to create unique keys for object properties, ensuring that the identifiers added by the library are distinct and not prone to clashes. Using string identifiers or numbers may lead to conflicts, especially in a shared library context. Object literals with unique keys can be used, but Symbols offer a more direct and elegant solution.

In a custom iterable, the next() method should return an object with two properties: value and ________.

  • done
  • index
  • result
  • previous
In a custom iterable, the next() method should return an object with two properties: value, representing the current value in the iteration, and done, a boolean indicating whether the iteration is complete.

How does the Fetch API handle HTTP error statuses (like 404 or 500) in Promises?

  • It doesn't reject the Promise for any HTTP error status
  • It rejects the Promise only for network errors
  • It rejects the Promise for any non-2xx HTTP status
  • It triggers a catch block for network errors and HTTP errors
The Fetch API rejects the Promise for any non-2xx HTTP status, allowing developers to handle errors more effectively. Network errors, however, are still caught separately, providing detailed error handling in both scenarios.

In a scenario where you need to process each character of a string for a text analysis function, which loop would you choose and why?

  • for loop
  • for...in loop
  • forEach loop
  • for...of loop
The correct option is the for...of loop. This loop is specifically designed for iterating over iterable objects, such as strings, arrays, and collections. It provides direct access to the values, making it suitable for processing each character of a string. Unlike the for loop, it abstracts away the index and simplifies the code for tasks like text analysis.

How does hoisting behavior differ between variables declared with let/const and those declared with var?

  • Variables declared with var are hoisted to the top of their scope, while let/const variables are hoisted but not initialized.
  • Variables declared with let/const are hoisted to the top of their scope, while var variables are hoisted but not initialized.
  • Variables declared with let/const are not hoisted, while var variables are hoisted and initialized with undefined.
  • Variables declared with var are not hoisted, while let/const variables are hoisted and initialized with undefined.
In JavaScript, variables declared with var are hoisted and initialized with undefined at the top of their scope, while let and const are hoisted but not initialized. Accessing a let/const variable before its declaration results in a ReferenceError.

What does the await keyword do inside an async function?

  • Pauses the execution of the function until the Promise is resolved
  • Executes the asynchronous code in parallel with the synchronous code
  • Skips the asynchronous code and proceeds with the synchronous execution
  • Forces the function to return immediately
The await keyword is used to pause the execution of an async function until the Promise being awaited is resolved, allowing asynchronous code to be written in a synchronous-like manner.

What are the implications of using await in top-level code (outside of any function)?

  • Causes a syntax error
  • Works as expected
  • Results in unhandled promise rejection
  • Has no effect
Using await outside of any function (at the top level) is not allowed and results in an unhandled promise rejection. The top-level code doesn't have the necessary structure to handle asynchronous operations using await. To use await, it should be inside an async function. Otherwise, it leads to unexpected behavior and unhandled promise rejections.