gpt4 book ai didi

javascript - 返回值的 bool 函数

转载 作者:搜寻专家 更新时间:2023-10-30 21:33:06 24 4
gpt4 key购买 nike

好吧,我正在研究一些代码并且想知道这个函数,我知道它是一个 bool 值,但我以前有过这个并且想知道这个语法究竟是如何工作的。是否应该询问墙是否存在并返回 true?

hasVisited(): boolean {
return (
!this.northWall || !this.eastWall || !this.westWall || !this.southWall
);
}

最佳答案

如果 northWall 不真实,或者 eastWall 不真实,或者 westWall 不真实,或者如果 southWall 不真实,否则返回 false。

如果 northWall 是假的或者如果 eastWall 是假的或者如果 westWall 是假的或者如果 southWall 是假的,否则返回假。

如果任何 (north|south|east|west)Walls 是 falsy,则转换为返回 true,否则返回 false。

关于javascript - 返回值的 bool 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56527297/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com