Not sure where to start?
Bootcamp
Study group
Collaborate with peers in your dedicated #study-group channel.
Code reviews
Submit projects for review using the /review command in your #code-reviews channel
/review
Karma
scrimba
const divRegnestykke = document.getElementById("divRegnestykke");const txtPoeng = document.getElementById("txtPoeng");const txtHighscore = document.getElementById("txtHighscore");const inpSvar = document.getElementById("inpSvar");let fart = 1;let poeng = 0;const keyframes = [ { top: "-4rem" }, { top: "21rem" }];const settings = { duration: 8000, easing: "linear", fill: "forwards" };const animasjon = divRegnestykke.animate(keyframes, settings);