Why Do We Need Functions?

Suppose we want to add two numbers several times.

Without functions:

let result = 10 + 20;

console.log(result);