JS mengatur nilai di objek hanya jika didefinisikan
const value = getValue()
const destination = {
...(value ? { value } : {})
}
Clean Caribou
const value = getValue()
const destination = {
...(value ? { value } : {})
}