// Formatted code will appear here
// Original code:
function test(){ let x=10;console.log('Unformatted:',x); }
// Formatted code:
function test() {
let x = 10;
console.log("Unformatted:", x);
}
// Minified code:
function test(){let x=10;console.log("Unformatted:",x)}