¿Cuál es la salida de este código?
const quantity = 5;
console.log(`There ${quantity === 1 ? 'is' : 'are'} ${quantity} item${quantity !== 1 ? 's' : ''} in the cart.`);
¿Cuál es la salida de este código?
const quantity = 5;
console.log(`There ${quantity === 1 ? 'is' : 'are'} ${quantity} item${quantity !== 1 ? 's' : ''} in the cart.`);