JS/TS Formatter
src
/
tools
/
JS/TS Formatter
Format
Input Code
function test(n){ return n<2?1:test(n-1)*n; } console.log(test(5));
Formatted Output
function test(n) { return n < 2 ? 1 : test(n - 1) * n; } console.log(test(5));