Honest Online Tools

Text & Code Diff

Compare two blocks of text or code side by side and format code — without pasting 2,000 lines into an AI.

+2-1
1 1function greet(name) {
2 - console.log("Hello " + name);
2+ console.log(`Hello, ${name}!`);
3+ return true;
3 4}