scrimba
Learn Regex
Remove Whitespace from Start and End
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Remove Whitespace from Start and End
AboutCommentsNotes
Remove Whitespace from Start and End
Expand for more info
index.js
run
preview
console
let hello = "   Hello, World!  ";
let wsRegex = /change/; // Change this line
let result = hello; // Change this line
console.log(result);
Console
index.html
-2:05