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
//CHALLENGE//Get a reference to hexInput and inputColor DOM elements//Create a keyup event handler for hexInput//Check if hex color is valid//If hex color is valid, update the background color of inputColorconst isValidHex = (hex) => { if(!hex) return false; const strippedHex = hex.replace('#', ''); return strippedHex.length === 3 || strippedHex.length === 6;}