= this._offse-6ren">
gpt4 book ai didi

javascript - 如何阅读这个复杂的 Javascript 快捷操作符?

转载 作者:行者123 更新时间:2023-11-30 07:16:16 25 4
gpt4 key购买 nike

我正在研究另一个开发人员的代码并遇到了这条疯狂的线。看起来正在进行大量比较,但我无法理解。

num > -1 ? "down" === position && value >= this._offset ? this.hideFunc() : "up" === position && value >= this._offset && this.showFunc() : this.showFunc()

我怎样才能破译这个?

最佳答案

if (num > -1) {
if ( "down" === position && value >= this._offset ) {
return this.hideFunc();
} else if ("up" === position && value >= this._offset) {
return this.showFunc();
} else {
return; //Doesn't exist in the one liner but the function must return something..
}
} else {
return this.showFunc();
}

关于javascript - 如何阅读这个复杂的 Javascript 快捷操作符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16429121/

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