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