When using default export, you can rename the imported module without using the _________ syntax.

  • import customName from
  • import as customName from
  • import {customName} from
  • import default as customName
In ES6, when importing a module with a default export and renaming it, you use the import customName from 'moduleName'; syntax. The as keyword is not required in this context.

In a WeakMap, keys must be ________ and not primitive values.

  • Objects
  • Strings
  • Numbers
  • Booleans
In a WeakMap, keys must be objects, as primitive values are not allowed as keys. This is because WeakMap uses "weak" references to the keys, and primitive values do not have references like objects.

An unhandled promise rejection can be caught globally using process.on('________', handler).

  • rejection
  • unhandledRejection
  • promiseError
  • errorHandled
In Node.js, the 'unhandledRejection' event is emitted when a Promise is rejected but no handler is provided. Using process.on('unhandledRejection', handler) allows you to catch and handle such rejections globally.

What is the primary purpose of tree shaking in JavaScript modules?

  • Eliminating Unused Code
  • Minifying the Code
  • Enhancing Code Readability
  • Improving Network Performance
Tree shaking is a process in JavaScript where unused or dead code is eliminated from the final bundle during the build process. The primary purpose is to reduce the size of the bundle by removing parts of the code that are not actually used, thus improving the application's performance and loading times. It helps in optimizing the overall efficiency of the application by excluding unnecessary code.

Higher-order functions improve code __________ by allowing for more abstract and concise code.

  • Efficiency
  • Readability
  • Performance
  • Execution
By using higher-order functions, code becomes more readable and expressive. It abstracts away the details of how a particular operation is performed, making the code concise and easier to understand.

How does inheritance of static methods differ from that of instance methods in ES6?

  • Static methods cannot be inherited.
  • Static methods are inherited through the prototype chain.
  • Static methods are inherited using the extends keyword.
  • Static methods are inherited through the super keyword.
In ES6, static methods are inherited through the prototype chain, just like instance methods. The key difference lies in how they are called and accessed. The extends keyword is used to inherit static methods, making them accessible through the derived class. Option B is the correct answer.

What is the primary purpose of the async keyword in a function declaration?

  • Enables the function to return a Promise
  • Specifies that the function can be called asynchronously
  • Defines a function that can only be executed in an asynchronous manner
  • Marks a function as an asynchronous event handler
The async keyword is used to make a function return a Promise. This allows the use of await within the function, indicating that it contains asynchronous code.

Given a scenario where you need to process each character of a string individually, how would you utilize an iterator?

  • Iterate through the string using a for loop
  • Use the Array.from() method to convert the string to an array and then iterate
  • Utilize the string's forEach method
  • Use the for...of loop to iterate over the string
In this scenario, using the for...of loop is the most concise and readable way to iterate over each character of a string. The for...of loop works specifically for iterable objects, and strings are iterable in JavaScript. It simplifies the code and enhances readability.

What is a key difference between functional composition and method chaining?

  • Method chaining involves calling methods directly on an object, while functional composition combines functions to create new functions
  • Functional composition is only applicable in functional programming languages
  • Method chaining can only be used with asynchronous functions
  • All functions used in functional composition must be pure functions
Functional composition involves combining functions to create more complex ones, whereas method chaining is about calling methods directly on an object. Understanding this difference is crucial for designing clean and readable code.

What keyword is used to define a generator function in JavaScript?

  • function*
  • gen
  • generator
  • yield
The correct keyword to define a generator function in JavaScript is function*. It uses the asterisk (*) after the function keyword. This syntax indicates that the function is a generator. Options b) and c) are incorrect, and d) is used within the generator function to yield values.