Are you sure you're getting this? Fill in the missing part by typing it in.
The output of the following code is ___.
JAVASCRIPT
1var output = (function(x) {
2 delete x;
3 return x;
4})(0);
5
6console.log(output);
Write the missing line below.
The output of the following code is ___.
1var output = (function(x) {
2 delete x;
3 return x;
4})(0);
5
6console.log(output);
Write the missing line below.