FrontendInterviews.dev

690. delete with Optional Chaining

Easy•

Predict the output.

const obj = null
console.log(delete obj?.x)

What is printed in the console?

Select an option and submit your answer.
Next Problem