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