Appearance
禁止无用的返回
一个没有任何返回值的return;语句是多余的,对函数的运行时行为没有任何影响。
return;
删除无用的返回语句
var foo = function () { return; };
var foo = function () { return 520; };