Question: Which statement represents the starting code converted to an IIFE?
- `function() { console.log('lorem ipsum'); }()();`
- `function() { console.log('lorem ipsum'); }();`
- `(function() { console.log('lorem ipsum'); })();`
Answer: The correct answer of the above question is Option C:`(function() { console.log('lorem ipsum'); })();`