function add(a,b){ alert("Our second function is called") return a+b; } function addTwoThings(a,b){ alert("First function is called") return add(a,b); }