Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
Binary file added express/.DS_Store
Binary file not shown.
9 changes: 9 additions & 0 deletions express/lib/greet-user.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// https://www.programiz.com/javascript/function
// program to print the text
// declaring a function
function greet(name) {
let name = prompt("What is your name? ");
console.log("Hello " + name + ":)");
}