Button click should add items to array, but array is empty on each function call – Shopify
Code looks something like this let sectionWithLimitItems = []; function addItems(productId) { sectionWithLimitItems.push(productId) } <button onclick='appendItems({{ productId }})'>Click Me</button> Working with liquid, Shopify's theme template language, but not sure if that would create complications. If I log the array each…