// declaring the function function exampleFunction(a, b, c) { return (a+b)*c; } // using the function exampleFunction(1,2, 3);