JS destructure si existe

const content = undefined
const { item } = { ...content }
console.log(item) // undefined
Simon