JS
challenger
Home
Intermediate JavaScript
classes
Add a Method to a Class
Add a Method to a Class
Add a method
greet
to the class
User
. The method should return the string
'Hello!'
.
Premium
reset
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Run Code
Console