const message = function(){ }
const diceRoll = function(){ return 4;}
const message = function(){ return "Hello there";}
const message = function(name){ return "Hello " + name;}
const sum = function(num){ return num + 10;}
const calculateTip = function(bill){ return bill * 1.2;}
const sum = function(num1, num2){ return num1 + num2;}
const message = function(name, location){ return "Hello " + name + " from " + location;}
const calculateTip = function(bill, tip){ return bill * tip;}
const message = function(){ return "Hey there"; }
message();
const greeting = function(name){ return "Hi " + name; }
greeting("John Doe");
const sum = function(num1, num2){ return num1 + num2; }
sum(5, 10);
const hello = function(name, location){ return "Hi " + name + " from " + location; }
hello("John", "Berkeley");