# Recursion ```javascript function recursion() { // Forever repeating // Getting one step closer every time // Each iteration is a new chance // of getting nearer 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(); } ```