JS/TS Formatlayıcı
src
/
tools
/
JS/TS Formatlayıcı
Formatla
Girdi Kodu
function test(n){ return n<2?1:test(n-1)*n; } console.log(test(5));
Formatlanmış Çıktı
function test(n) { return n < 2 ? 1 : test(n - 1) * n; } console.log(test(5));