Wed Jun 02 2021 16:49:52 GMT+0000 (Coordinated Universal Time)
Saved by @ejiwen
function countDown(num) { if(num === 0) { console.log('Finished ', num); } else { countDown(num-1); console.log('FINISHED ', num); } } countDown(3); -------------------------------------------
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments