Функция console.log() выводит текст в консоль.
console.log()
Сумму двух переменных можно вывести так:
const a = 1; const b = 2; console.log(a + b);