将数组转换为switch语句

时间:2011-07-15 05:49:54

标签: javascript arrays switch-statement

将数组转换为switch语句的最快解决方案是什么?

var myArr = [x,y]

  case x:
    console.log("ok > x")
    break;
  case y:
    console.log("ok > y")
    break;

2 个答案:

答案 0 :(得分:3)

像这样

arr.map(function(I) { console.log('ok >' + I); });

如果我正确地猜测你的问题。

答案 1 :(得分:2)

  

将数组转换为switch语句的最快解决方案是什么?

...只是为了好玩,我按字面意思接受你的要求:

function arrToSwitch(a, x) {
  var code = [];
  code.push("var f = function (x) {");
  code.push(" switch (x) {");
  for (var i=0, j=a.length; i<j; i++) {
    code.push("  case " + a[i] + ": console.log('ok > " + a[i] + "'); break;");
  }
  code.push("  default: console.log('not found');");
  code.push(" }\n}");
  eval( code.join("\n") );
  return f;
}

var myArr = [1, 2, 3];
var test = arrToSwitch(myArr);
test(3)   // logs "ok > 3" to the console
test(4)   // logs "not found" to the console

console.log(test);
/* returns
function (x) {
 switch (x) {
  case 1: console.log('ok > 1'); break;
  case 2: console.log('ok > 2'); break;
  case 3: console.log('ok > 3'); break;
  default: console.log('not found');
 }
}
*/

请注意,上述内容毫无意义,超出了丑陋和危险之中。使用自负。