向 if 语句添加 and/or 子句

问题描述 投票:0回答:3

我需要在 Google pps 脚本中包含和/或声明 if 条件。我是脚本新手,无法找到方法来执行此操作。

if (dateval<>"") and (repval<>"") {condition if true}
javascript google-sheets google-apps-script boolean-operations
3个回答
13
投票

您可以在此网站上找到该主题(和其他)的所有信息。

在你的例子中答案是

if (dateval!="" && repval!="") {do something}

11
投票
逻辑符号
或者 ||    
和       &&
等于==
不!=

https://www.w3schools.com/js/js_comparisons.asp


-2
投票

我尝试了Serge insas的答案,发现它没有编译。

我搞乱了,修改了该行如下:

if ((dateval<>"") and (repval<>"")) {condition if true}

我终于让它发挥作用了。显然,它需要额外的括号。

© www.soinside.com 2019 - 2024. All rights reserved.