React is Just Javascript Quiz

Question 1 of 6

What is the output of the below code?

1function App() {
2 console.log('Hello World');
3}
4
5App();