[JS] – Example of a immutable class in Javascript

class Sell { constructor(date, quantity, price) { this._date = new Date(date.getTime()); // new instance this._quantity = quantity; this._price = price; … More

[JS] How to implement a switch ?

  switch (conditional) { case “A”: console.log(“conditional == A”); break; case “B”: console.log(“conditional == B”); case “C”: console.log(“conditional == C”); … More