function startWith(message, callback){
console.log("Clearly written messages is: " + message);
//check if the callback variable is a function..
if(typeof callback == "function"){
callback(); //execute function if function is truly a function.
}
}
//finally execute function at the end
startWith("This Messsage", function mySpecialCallback(){
console.log("Message from callback function");
})