JSFiddle - React, Tailwind, and code Playground

by syamsoul

JavaScript

(function(){
  let t, x = "20";
  switch (x) {
    case '10':
      t = 15;
      break;
    case '20':
      t = 150;
      console.log(t);
      break;
  }
})();