26-01-2026 10:51 AM
Even when opening the multiline editor the console doesn't seem to recognize the request above the current line. Something as simple as this fails in the console window.
var checkboxes = document.querySelectorAll('input[type="checkbox"]');
checkboxes.forEach(checkbox => {
checkbox.checked = true;
});Uncaught SyntaxError: redeclaration of const checkboxes