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
/* Alternating Caps Write a function that takes in a string of letters and returns a sentence in which every other letter is capitalized.Example input: "I'm so happy it's Monday"Example output: "I'M So hApPy iT'S MoNdAy"*/function altCaps(str){ return newStr;}console.log(altCaps("When you visit Portland you have to go to VooDoo Donuts"));