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
// TypeScript mini Challengeconst movies = ['elf', 'bad boys', 'mulan', 'diehard']const movie = 'diehard'function checkMovies(movies, movie) { document.getElementById('movie').innerHTML = movies const resultDisplay = document.getElementById('result') const result = movies.includes(movie) resultDisplay.innerHTML = result}checkMovies(movies, movie)