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"); }
Introduction to Login Form Design Designing an effective and beautiful login form is crucial for…
Introduction In today creating a responsive login form is essential for providing a seamless user…
Introduction to Inventory Management Systems In today's fast-paced digital environment, businesses require efficient inventory management…
Introduction to React Inventory Management Systems In today’s fast-paced business environment, efficient inventory management is…
Introduction to React Calculator Creating a functional calculator in React is an excellent way to…