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
// javascriptfunction myFunction() { const msg = document.getElementById('demo'); if (document.getElementById('id1').validity.rangeOverflow) { msg.textContent = 'Value too large'; } else { msg.textContent = 'Value OK'; }}function checkEmail() { const msg = document.getElementById('demo'); const emailNode = document.getElementById('email'); if (emailNode.validity.typeMismatch) { msg.textContent = 'INVALID'; } else { msg.textContent = 'VALID'; }}