Back to Freecodecamp

Recursive Functions

curriculum/challenges/english/blocks/recursion-and-space-complexity/recursive-functions-video.md

latest343 B
Original Source

--description--

In this video, you will learn about recursion.

--questions--

--text--

What is an important aspect that all recursive functions should have?

--answers--

They must run in a loop indefinitely.


They must not use any variables.


A base case.


They must always print output.

--video-solution--

3