Aprende POO construyendo un carrito de compras - Step 40

Cuéntanos qué está pasando:

Hello Campers! The error keeps telling me this: “You should use ternary syntax to check if isCartShowing is true.”

Tu código hasta el momento

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

cartBtn.addEventListener("click", () => {
  isCartShowing = !isCartShowing;
  showHideCartSpan.textContent = isCartShowing ? "Hide" : "Show";
  isCartShowing? cartContainer.style.display = "block" : cartContainer.style.display = "none";
});

// User Editable Region

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36

Información del Desafío:

Aprende POO construyendo un carrito de compras - Step 40

Sorry, I already solved it! :blush: :sparkling_heart::sparkles: