Interactive Diff Tool
Editor 1
// function to add two number function add(a, b) { return a + b; }
Editor 2
// function to subtract two number function subtract(a, b) { return a - b; }