ToolsGuru
Categories
How to Use
About
Contact
Back to Developer Tools
Formatters & Converters
Professional formatting and conversion toolkit
Code Formatter
Markdown Editor
CSV to JSON
Live Preview
Prettier
Markdown
CSV to JSON
Code Formatter (Prettier-style)
Format and beautify your code with automatic indentation and style improvements.
Language
Input Code
function calculateTotal(items){const tax=0.08;let subtotal=items.reduce((acc,item)=>{return acc+item.price*item.quantity;},0);let taxAmount=subtotal*tax;return {subtotal:subtotal,tax:taxAmount,total:subtotal+taxAmount};}
Formatted Code
Copy
function calculateTotal(items) { const tax = 0.08; let subtotal = items.reduce((acc, item) => { return acc + item.price * item.quantity; }, 0); let taxAmount = subtotal * tax; return { subtotal: subtotal, tax: taxAmount, total: subtotal + taxAmount, }; }
Format Code