//asic Function Declaration function aman() { console.log("Hello mere bhai") } aman() function anup(){ console.log("Hello Kya kr rahe hoo") } anup(); //Function with Parameters //Parameters let you pass values into a function. function greet(name) { console.log("Hello " + name); } greet("Anup"); greet("Rahul"); function greet(name) { console.log("Hello " + name); } greet('Anup'); greet("Abhishek"); function abhishek(name) { console.log("Hello " + name); } abhishek("Kya kr rha hai"); abhishek("kya kr rahe ho tum"); //Call the function OutSide