0
我已經if語句如下:如何使if語句點免費
var formatCity =
obj => R.both(has('city'), has('state'))(obj) ? appendCommaToCity(obj) : obj
我想使這個碼點免費的,但不能找出周圍的if語句的方式。
我已經if語句如下:如何使if語句點免費
var formatCity =
obj => R.both(has('city'), has('state'))(obj) ? appendCommaToCity(obj) : obj
我想使這個碼點免費的,但不能找出周圍的if語句的方式。
這實際上是使用ifElse
function很簡單 - 或它的專業化,when
:
const formatCity = R.when(R.both(has('city'), has('state')), appendCommaToCity);