如何使用条件 immutable.js 设置变量
How set variable with condition with immutable.js
打字稿中的这段代码:
const b
if (a == true) {
b = [1]
} else {
b = [2]
}
如何将上面的代码转换成immutable.js?
您有两个选择:
let b
if (a) {
b = List([1])
} else {
b = List([2])
}
//or
const b = a ? List([1]) : List([2])
打字稿中的这段代码:
const b
if (a == true) {
b = [1]
} else {
b = [2]
}
如何将上面的代码转换成immutable.js?
您有两个选择:
let b
if (a) {
b = List([1])
} else {
b = List([2])
}
//or
const b = a ? List([1]) : List([2])