Back to Demos

Diff Checker

Compare two pieces of text and see the differences highlighted line by line.

Removed: 3Added: 4Unchanged: 3

Original

Modified

Comparison Result

1function greet(name) {
2 console.log("Hello, " + name);
1+function greet(name, greeting = "Hello") {
2+ console.log(greeting + ", " + name + "!");
33 return true;
44}
55
6greet("World");
6+// Call the function
7+greet("World", "Hi");