Not sure where to start?
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
/review
Karma
scrimba
let soccerWord = "gooooooooal!";let gPhrase = "gut feeling";let oPhrase = "over the moon";let goRegex = /go*/;soccerWord.match(goRegex); // Returns ["goooooooo"]gPhrase.match(goRegex); // Returns ["g"]oPhrase.match(goRegex); // Returns nulllet chewieQuote = "Aaaaaaaaaaaaaaaarrrgh!";let chewieRegex = /change/; // Change this linelet result = chewieQuote.match(chewieRegex);