我正在尝试创建一个用于计算Google工作表中预设佣金的功能。我继续收到第15行的语法错误。
任何人都可以帮助我吗?有一个描述我想要达到的评论在顶部。 感谢。
/**Calculates commission based on the following rules
if less than 33 subtract 3
if in between 33.01 and 55 subtract 5
if in between 55.01 and 100 subtract 10
if more than or equal to 100 multiply by .9
*/
function comS(input) {
if (input <= 33) {
return (input - 3);
}
else if (input >= 33.01 && <= 55) {
return (input - 5);
}
else if (input >= 55.01 && <= 100) {
return (input * 0.9);
} else {
return "Please insert a valid amount"
}
}
/**
End of function
*/
&#13;
答案 0 :(得分:0)
这不是&&
运算符的工作方式,您需要在每一方设置比较:
(input >= 55.01 && input <= 100)
另外,请花点时间看看如何在SO上提出一个好问题。