function add(a, b){ const finalString = `${a} + ${b} = ${a+b}`; console.log(finalString); }; add(1, 2);