# Recursion ```javascript function recursion() { // Forever repeating // Getting one step closer every time // Each iteration is a new chance // Of getting closer to the goal // Infinity won't be reached // But we can get close // How long will it take? // We don't know // Patiently we wait // and call it once again // let me tell you about recursion(); } ```