Apps / Diff Viewer
Original9 lines · 181 chars
Modified11 lines · 189 chars
+5−3· 5 unchanged lines
| 1 | The quick brown fox jumps over the lazy dog. | 1 | The quick brown fox leaps over the lazy dog. |
| 2 | A short line that stays the same. | 2 | A short line that stays the same. |
| 3 | This line will be removed entirely. | ||
| 4 | const x = 5; | 3 | const x = 5; |
| 5 | const y = 10; | 4 | const z = 20; |
| 6 | function add(a, b) { | 5 | function add(a, b) { |
| 7 | return a + b; | 6 | return a + b; |
| 8 | } | 7 | } |
| 8 | function multiply(a, b) { | ||
| 9 | return a * b; | ||
| 10 | } |