1let num1 = 10
2let num2 = 4
3let sum = num1 + num2
4console.log(sum)
5//normal result = 14
6
7//use the String() method to convert the numbers into strings
8let num1 = String(10)
9let num2 = String(4)
10let sum = num1 + num2
11console.log(sum)
12//new result = "104"