Run details:
Mozilla/5.0 (Linux; Android 11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.79 Mobile Safari/537.36
Chrome Mobile 100
Android
Mobile
3 years ago
Test name Executions per second
Object Literal 4052360.5 Ops/sec
If Else 1339349.5 Ops/sec
Switch Case 4037418.8 Ops/sec
Object Literal 2 4052435.0 Ops/sec
Script Preparation code:
AخA
 
animal = "cheetah"
Tests:
  • Object Literal

    x
     
      const babyAnimals = {
        dog: "Puppy",
        cat: "Kitten",
        cheetah: "Cub",
      };
      let result1 = babyAnimals[animal] || "-";
  • If Else

     
      let result2 = "-";
      if (animal === "dog") result2 = "Puppy";
      else if (animal === "cat") result2 = "Kitten";
      else if (animal === "cheetah") result2 = "Cub";
  • Switch Case

     
      let result3 = "-";
      switch (animal) {
        case "dog":
          result3 = "Puppy";
          break;
        case "cat":
          result3 = "Kitten";
          break;
        case "cheetah":
          result3 = "Cub";
          break;
        default:
      }
  • Object Literal 2

     
      const babyAnimals = {
        dog: "Puppy",
        cat: "Kitten",
        cheetah: "Cub",
      };
      let result1 = babyAnimals[animal] ?? "-";