/*Let's compare + used with numbers to + used with strings.*/ console.log(1 + 1); console.log("1" + "1"); //2 //11