Dhiraj Arun
Results
43
comments of
Dhiraj Arun
assign this issue to me.
Thanks @MichaReiser I will read discussion and let you know.
`delete` operator can be used incorrectly in the case of 1. deleting a variable ```js var x = "a" let y = "b" const z = "c" delete x //...