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
// TypeScript Example Two// Arraysconst inventory = ['bacon', 'eggs', 'flour', 'bananas']const item = 'flour'document.getElementById('item').innerHTML = itemfunction checkInventory(inventory, item) { const resultDisplay = document.getElementById('result') resultDisplay.innerHTML = inventory.includes(item)}checkInventory(inventory, item)