// Function expression var sayHello = function(name) { console.log("Hello, " + name + "!"); }; sayHello("Yogesh"); // Hello, Yogesh! In this example, we create a ...