Home Node JS Node js Basic 3 Projects

Node js Basic 3 Projects

1 min read
0
0
154
  1. Create a function that prints your name to the console.
  2. create a function that takes your name as a paramenter and print to the console
  3. 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

 

  1. 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");
}

 

 

 

 

    Load More Related Articles
    Load More By admin
    Load More In Node JS

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    Check Also

    Laravel 11 CRUD Mastering RESTful API MVC with Repository Pattern

    In this tutorial will teach Laravel 11 Api MVC with Repository Pattern Crud Application st…