Recently, our teacher gave us a quiz on JavaScript. I'm relatively advanced in terms of programming, so when I came upon a question:
Using the name of a function within that same function will result in an infinite loop?
I answered false because of recursion. From my understanding, you have to use the name of a function in order to call it, so recursion would make this not always true.
Am I correct in my understanding, or is the wording different?