JS
challenger
Home
JavaScript Practice
JavaScript sets
Delete element from Set
Delete element from Set
Write a function that takes a Set and a value as argument. If existing in the Set, remove the value from the Set. Return the result
Premium
reset
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Run Code
Console