Guest User

Untitled

a guest
Jan 16th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. //we have used function keyword to create a funtion
  2. function welcome(name){
  3. return "I'm " +name+", Welcome to my workspace";
  4. }
  5.  
  6. //we are logging the output to the console by calling it and passing parameter
  7. Console.log(welcome("Madhusudhan"));
Add Comment
Please, Sign In to add comment