defaultparams2.js 274 B

1234567891011
  1. 'use strict';
  2. /** Class representing pizza toppings. */
  3. class PizzaToppings {
  4. /**
  5. * Set whether sardines are included in the pizza toppings.
  6. * @param {boolean} [bool] `true` to include sardines, `false` to omit them.
  7. */
  8. setSardines(bool = true) {}
  9. }