gpt4 book ai didi

javascript - 如何在构造函数中将属性初始化为 false?

转载 作者:行者123 更新时间:2023-11-28 17:33:27 26 4
gpt4 key购买 nike

假设您有一个简单的类(class):

class Example {
constructor(options) {
this.active = options.active || true;
}

}

如何在构造函数中将 this.active 初始化为 false?
我想传递 new Example({active: false}) 并默认为 true。

最佳答案

由于构造函数的编码方式,在选项中传递 false 仍会使标志初始化为 true:

    this.active = options.active || true; // always true

我会做这样简单的事情:

    this.active = ("active" in options) ? options.active : true;

这样,如果传入的选项包含标志的任何值,则使用该值;否则,如果未指定,则使用 true

关于javascript - 如何在构造函数中将属性初始化为 false?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49718790/

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