Formattatore JS/TS
src
/
tools
/
Formattatore JS/TS
Formatta
Codice di Input
function test(n){ return n<2?1:test(n-1)*n; } console.log(test(5));
Output Formattato
function test(n) { return n < 2 ? 1 : test(n - 1) * n; } console.log(test(5));