If-else vs. switch vs. lookup table (v54)

Revision 54 of this benchmark created by ooflorent on


Description

Modified so the lookup tables don't generate 1 function per solution.

Setup

function ifElseTest(stuff) {
      if (stuff === "pizza") {
        return "food";
      } else if (stuff === "house") {
        return "building";
      } else if (stuff === "table") {
        return "furniture";
      } else if (stuff === "car") {
        return "driving";
      } else if (stuff === "water") {
        return "drink";
      } else if (stuff === "air") {
        return "nothing";
      }
    };
    
    function switchTest(stuff) {
      switch (stuff) {
        case "pizza":
          return "food";
          break;
    
        case "house":
          return "building";
          break;
    
        case "table":
          return "furniture";
          break;
    
        case "car":
          return "driving";
          break;
    
        case "water":
          return "drink";
          break;
    
        case "air":
          return "nothing";
          break;
      }
    };
    
    var table = {
        'pizza': 'food',
        'house': 'building',
        'table': 'furniture',
        'car': 'driving',
        'water': 'drink',
        'air': 'nothing'
      };
    
    function lookupTable(lookup) {
      
    
      return table[lookup];
    
    }

Test runner

Ready to run.

Testing in
TestOps/sec
if else
ifElseTest("pizza");
ifElseTest("water");
ifElseTest("air");
ready
switch
switchTest("pizza");
switchTest("water");
switchTest("air");
ready
lookup table
lookupTable("pizza");
lookupTable("water");
lookupTable("air");
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.