We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
De laatste 3 variables in je code zijn onnodig. Probeer of de eventListener toe te voegen aan je variable:
const homeButton = document.querySelector('footer > button:first-of-type'); homeButton.addEventListener("click", () => { window.location.hash = '#home'; })
Of haal de variable weg:
document.querySelector('footer > button:first-of-type').addEventListener('click', () => { /* Go to profile page */ window.location.hash = '#home'; })
Barcode-scanner/js/app.js
Line 31 in 5f8e63b
The text was updated successfully, but these errors were encountered:
No branches or pull requests
De laatste 3 variables in je code zijn onnodig. Probeer of de eventListener toe te voegen aan je variable:
Of haal de variable weg:
Barcode-scanner/js/app.js
Line 31 in 5f8e63b
The text was updated successfully, but these errors were encountered: