Question d’entretien chez NeoSOFT

Coding Round:- They asked to print from 1 to 10 without using any loop.

Réponse à la question d'entretien

Utilisateur anonyme

23 mai 2023

(function name(n, m) { // body... if (n <= m) { console.log(n); n++; name(n, m); } })(1, 10);