// declaring the function function adder(a, b) { return a+b; } // using the function adder(1,2);