JavaScript
function greet(name) {
  return `Hello, ${name}!`;
}

const message = greet('World');
console.log(message); // Hello, World!
This component is contributed by Marcus Hendricks on tailwindflex.  view component