Data Diff Diff Checker Compare two texts with word-level precision Run locally tols diff @old.txt @new.txt copy ⌘⇧C Split Unified Original 106 chars function greet(name) { return "Hello, " + name + "!"; } const user = "World"; console.log(greet(user)); Modified 104 chars function greet(name) { return `Hello, ${name}!`; } const user = "Universe"; console.log(greet(user)); Word-Level Comparison swap example clear Share