我需要在if
语句中检查多个条件。团队条件有什么解决方案吗?这是我的代码:
if (address1.length === 0
&& address2.length === 0
&& city.length === 0
&& state.length === 0
&& postalcode.length === 0
&& country.length === 0){
}
C#中的示例:
string contactinfoGroupValue = string.Format("{0}{1}{2}{3}{4}{5}", address1, address2, city, state, postalcode, country);
if (contactinfoGroupValue == string.Empty)
{
}
在JS中可以遵循这种模式吗?请帮助我,谢谢。
答案 0 :(得分:2)
您的C#示例到JS的字面翻译将是:
var contactinfoGroupValue = address1 + address2 + city + state + postalCode + country;
if (contactinfoGroupValue.trim() === '') {
// do something
}