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
// Ternary Operationsconst textDisplay = document.getElementById('text')const emoticon = document.getElementById('emoticon');const isGameOver = false;// if (isGameOver) {// textDisplay.innerHTML = 'Oh no! You lost!'// } else {// textDisplay.innerHTML = 'YAY! You WON!'// }emoticon.innerHTML = isGameOver ? '😡' : '😁';textDisplay.innerHTML = isGameOver ? 'Oh no! You lost!' : 'YAY! You WON!'