const checkBingo = num => {
const cells = document.querySelectorAll('.cell');
cells.forEach(cell => {
if (сell.textContent === num) {
cell.classList.add('flip');
}
});
};
checkBingo
и createBall
if (cell.textContent === num) {
if (cell.textContent == num) {
// строку в число
if (+cell.textContent === num) {
// число в строку
if (cell.textContent === `${num}`) {