JS/TS फॉर्मेटर
src
/
tools
/
JS/TS फॉर्मेटर
फ़ॉर्मेट करें
Common.inputCode
function test(n){ return n<2?1:test(n-1)*n; } console.log(test(5));
Common.formattedOutput
function test(n) { return n < 2 ? 1 : test(n - 1) * n; } console.log(test(5));