我有以下if语句:
var formatCity =
obj => R.both(has('city'), has('state'))(obj) ? appendCommaToCity(obj) : obj
我想让这个代码点免费,但无法找到解决if语句的方法。
答案 0 :(得分:5)
实际上使用ifElse
function或其专业化when
非常简单:
const formatCity = R.when(R.both(has('city'), has('state')), appendCommaToCity);