Functions

function add3AndPrint(value) {
    console.log(value + 3);
}

add3AndPrint(5);