GreenGetWare
Home
Diff Checker
Diff Checker
Swap
Clear
Compare
Original Text
function hello() { console.log("Hello World"); return true; } const arr = [1, 2, 3]; arr.forEach(x => console.log(x));
Modified Text
function hello(name) { console.log("Hello " + name); return true; } const arr = [1, 2, 3, 4]; arr.forEach(x => console.log(x * 2));
Result