你试过不用if撸代码吗?

译者按: 试着不用 if 撸代码,是件很有趣的事,而且,万一你领会了什么是“数据即代码,代码即数据”呢?

本文采用意译,版权归原作者所有

我在教新手编程时,喜欢给他们一些小小的挑战,比如:不使用 if 语句(或者三元运算符、switch 语句等)解决一些编程问题。

这样做有什么意义吗?

事实上,它可以迫使你从不同的角度寻找解决方法,也许可以找到更好的方法。

当然,使用 if 语句没有任何不对的地方。但是,不使用 if 的话,有时候可以增加代码的可读性。这一点并不是绝对的,如果完全不使用 if 语句的话,代码可读性也许会更差。这需要你根据不同情况去判断。

而且,不用 if 的话不只是影响可读性。在这背后隐含着更加深刻的道理。通过了解本文的代码示例,你可以发现,如果不使用 if 语句的话,你的代码会更加接近代码即数据的概念。

另外,当你尝试不使用 if 语句去编程时,也是一件非常有意思的事情。

示例 1: 统计数组中的奇数

假设我们有一个整数数组arrayOfIntegers,现在需要统计其中奇数的个数:

const arrayOfIntegers = [1, 4, 5, 9, 0, -1, 5];

使用 if

let counter = 0;
arrayOfIntegers.forEach(integer => {
const remainder = Math.abs(integer % 2);
if (remainder === 1) {
counter++;
}
});

console.log(counter);

不用 if

let counter = 0;

arrayOfIntegers.forEach(integer => {
const remainder = Math.abs(integer % 2);
counter += remainder;
});

console.log(counter);

不用 if 时,我们巧妙地利用了奇数与偶数的特性,它们除以 2 的余数分别是 0 和 1。

示例 2: 判断工作日和周末

给定一个日期(比如new Date()),判断它是工作日还是周末,分别返回”weekend”和”weekday”。

使用 if

const weekendOrWeekday = inputDate => {
const day = inputDate.getDay();

if (day === 0 || day === 6) {
return "weekend";
}

return "weekday";

// Or, for ternary fans:
// return (day === 0 || day === 6) ? 'weekend' : 'weekday';
};

console.log(weekendOrWeekday(new Date()));

不用 if

const weekendOrWeekday = inputDate => {
const day = inputDate.getDay();

return weekendOrWeekday.labels[day] || weekendOrWeekday.labels["default"];
};

weekendOrWeekday.labels = {
0: "weekend",
6: "weekend",
default: "weekday"
};

console.log(weekendOrWeekday(new Date()));

你是否发现 if 语句中其实隐含着一些信息呢?它告诉我们哪一天是周末,哪一天是工作日。因此,要去掉 if 语句的话,我们只需要把这些信息写入weekendOrWeekday.labels对象,然后直接使用它就好了。

广告: 如果你需要监控线上 JavaScript 代码的错误的话,欢迎免费使用Fundebug!

示例 3: doubler 函数

写一个 doubler 函数,它会根据参数的类型,进行不同的操作:

  • 如果参数是数字,则乘以 2(i.e. 5 => 10, -10 => -20);
  • 如果参数是字符串,则每个字符重复 2 次 (i.e. 'hello' => 'hheelloo');
  • 如果参数是函数,则调用 2 次;
  • 如果参数是数组,则将每一个元素作为参数,调用 doubler 函数
  • 如果参数是对象,则将每个属性值作为参数,调用 doubler 函数

使用 switch

const doubler = input => {
switch (typeof input) {
case "number":
return input + input;
case "string":
return input
.split("")
.map(letter => letter + letter)
.join("");
case "object":
Object.keys(input).map(key => (input[key] = doubler(input[key])));
return input;
case "function":
input();
input();
}
};

console.log(doubler(-10));
console.log(doubler("hey"));
console.log(doubler([5, "hello"]));
console.log(doubler({ a: 5, b: "hello" }));
console.log(
doubler(function() {
console.log("call-me");
})
);

不用 switch

const doubler = input => {
return doubler.operationsByType[typeof input](input);
};

doubler.operationsByType = {
number: input => input + input,
string: input =>
input
.split("")
.map(letter => letter + letter)
.join(""),
function: input => {
input();
input();
},
object: input => {
Object.keys(input).map(key => (input[key] = doubler(input[key])));
return input;
}
};

console.log(doubler(-10));
console.log(doubler("hey"));
console.log(doubler([5, "hello"]));
console.log(doubler({ a: 5, b: "hello" }));
console.log(
doubler(function() {
console.log("call-me");
})
);

可知,我将每一种参数类型对应的操作绑定到了doubler.operationsByType,这样不需要 switch 语句,就可以实现 doubler 函数了。

关于Fundebug

Fundebug专注于JavaScript、微信小程序、支付宝小程序线上应用实时BUG监控。 自从2016年双十一正式上线,Fundebug累计处理了80亿+错误事件。欢迎大家免费试用

版权声明

转载时请注明作者 Fundebug以及本文地址:
https://blog.fundebug.com/2017/11/06/write-javascript-without-if/

您的用户遇到BUG了吗?

体验Demo 免费使用