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
// Benefits of TypeScript// challenges:// - give the screens innerHTML a string// - change the two input values to numbersconst button = document.querySelector('.button')const firstInput = document.querySelector('#first-input')const secondInput = document.querySelector('#second-input')const screen = document.querySelector('.screen') function addNumbers(a,b) { screen.innerHTML = a + b } button.addEventListener('click', () => addNumbers(firstInput.value, secondInput.value))