当前位置:  开发笔记 > 编程语言 > 正文

if语句的确切反义是什么

如何解决《if语句的确切反义是什么》经验,为你挑选了1个好方法。

任何人都可以帮助完成以下行的完全相反.我试过插入不!但我认为我必须把它放在错误的地方.

if (email.indexOf("@") < 1 || email.lastIndexOf(".") < email.indexOf("@") + 2 || email.lastIndexOf(".") + 2 >= email.length) {
    alert ("I need this to show when the exact opposite of the if statement occurs")
}

任何帮助将非常感激



1> 小智..:

让我们使用德摩根定律:

if(email.indexOf("@") >= 1 && email.lastIndexOf(".") >= email.indexOf("@") + 2 &&
email.lastIndexOf(".") + 2 < email.length)
{ 
    alert ("I need this to show when the exact opposite of the if statement occurs") 
};

只是对所有文字进行否定并将"或"更改为"和"

推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有