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