Consider a function designed to format a date. How would you use default parameters to provide flexibility in the format?
- Utilize default parameters to allow users to specify the format, such as formatDate(date, format = "YYYY-MM-DD").
- Use default parameters for individual components like day, month, and year, enabling customization while maintaining a default format.
- Allow a default format but also accept an optional format parameter, giving users the ability to override the default if needed.
- Use default parameters to set a default format but allow users to pass a custom formatting function, giving maximum flexibility.
Default parameters in JavaScript allow you to assign default values to function parameters. In the context of formatting a date, default parameters can be used to provide a default format, and users can override this by passing their desired format as an argument. This provides a balance between having a predefined format and allowing customization based on user needs.
Loading...
Related Quiz
- What happens when undefined is passed to a function with a default parameter?
- To handle errors within a generator function, the _________ method can be used alongside next().
- How do iterators use the next() method, and what does it return?
- Which of the following best describes the purpose of functional composition?
- If a variable declared with const is an object or array, its properties can still be ________.