JS
challenger
Home
JavaScript Practice
JavaScript fundamentals
Remove first n characters of string
Remove first n characters of string
Write a function that takes a string (a) as argument. Remove the first 3 characters of a. Return the result
Premium
reset
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Run Code
Console