const mul = function(x, y){ return x * y; }; //semicolon needs to be there as it is expression console.log(mul(10, 20));