Create arrow function I
Create an arrow function called func that receives two arguments. func should return the sum of the two arguments.
Premium
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("Erik"));
JavaScript
Console