Mobile App Now Available

Master Interviews
Anywhere, Anytime

Get the Preplance app for a seamless learning experience. Practice offline, get daily streaks, and stay ahead with real-time interview updates.

Get it on

Google Play

4.9/5 Rating on Store

What will this code output? function outer() { let count = 0; return function inner() { count++; return count; }; } const counter = outer(); console.log(counter()); console.log(counter()); - Javascript | Preplance Interview Prep | Preplance