example.js
function greet(name) {
  console.log(`Hello, ${name}!`);
  return `Welcome to Select Codes`;
}

greet("Developer");