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
const playerGuess = 3const correctAnswer = 6/*Challenge 1. Refactor the if else statement to use a ternary operator.*/let message = ''if (playerGuess === correctAnswer) { message = 'Correct!'}else { message = 'Wrong!'}console.log(message)