scrimba
Note at 1:39
Go Pro!Bootcamp

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

Note at 1:39
AboutCommentsNotes
Note at 1:39
Expand for more info
index.js
run
preview
console
import JSConfetti from 'js-confetti'
const word = 'santa'
const wordArr = word.split('')
const wordDisplay = document.getElementById('word-display')
document.addEventListener('submit', handleGuess)

function renderSpaces() {
const wordHtml = wordArr.map(() => {
return `<span class="letter">-</span>`
})
wordDisplay.innerHTML = wordHtml.join('')
}
renderSpaces()

function renderGuess(arr) {
const wordHtml = arr.map((letter) => {
return `<span class="letter">${letter}</span>`
})
wordDisplay.innerHTML = wordHtml.join('')
}

function handleGuess(e) {
e.preventDefault()
/**
* Debug Challenge:
* 1. There are loads of problems with the
* code below. Find them and fix them!
**/

/* bugs begin 🦠*/
let currentState = []
let input = document.getElementById('user-input').value;
let guess = input
const guessArr = guess.split('');
console.log(guessArr)
wordArr.forEach((letter) => {
if (guessArr.includes(letter)) {
currentState.push(letter);
} else {
currentState.push('_');
}
})
/* bugs end 🦠*/
renderGuess(currentState)
checkWin(guess)
// input.value = ''
document.getElementById('user-input').value = '';
}

function checkWin(guess) {
if (word === guess) {
const jsConfetti = new JSConfetti()
jsConfetti.addConfetti({
emojis: ['🧑‍🎄', '🎅'],
emojiSize: 50,
confettiNumber: 60,
confettiRadius: 6,
})
jsConfetti.addConfetti()
}
}
Console
[
"S"
,
"A"
,
"N"
,
"T"
,
"A"
]
,
[]
,
[
"S"
]
,
[
"A"
]
,
[
"N"
]
,
[
"T"
]
,
[
"A"
]
,
/index.html?
LIVE