Showing function talking
by kmburke84
JavaScript
$(document).ready(function() {
function hello() {
alert("hello");
}
function kevin(name) {
alert("kevin "+ name);
}
function goodbye() {
alert("bye");
}
goodbye(kevin("burke",hello()));
});