I want to become a Frontend-developer. I’ve understood that my university program is too wide and cannot give me enough material in this sphere. So I started watching some courses on YouTube about web-development. Then came across the rsschool youtube channel. So, now I’m here, full of desire to learn.
function setUserName() {
var myName = prompt("Please enter your name.");
localStorage.setItem("name", myName);
myHeading.textContent = "Mozilla is cool, " + myName;
}