- Create a function that prints your name to the console.
- create a function that takes your name as a paramenter and print to the console
- create a function that takes your name and age as paramenter and print to the console”Hi, my name is [yourname] and my age is [yourage] years old



- Create a function that prints your name to the console
function myName(name,age)
{
console.log("Hi, my name is " + name + " and i'm " + age + " years old");
}
myName("Rajesh",34)
2. create a function that takes your name as a parameter and print to the console
function myName(name)
{
console.log(name);
}
myName("Rajesh")3. Create a function that prints your name to the console.
function myName()
{
console.log("Rajesh");
}