// return is a directive that returns a value to the function after the code within it has been executed. function sum(a, b){ return a + b; } sum(10, 20); //output will be 30