返回值

函数返回(即:return 表达式)时不要使用圆括号 不建议写法:

return (false);

建议写法:

return false;