#beginners
Read more stories on Hashnode
Articles with this tag
What is a Bootcamp? A Bootcamp is a course that runs over a short period of time -- often around 3 months. It is normally full-time and intensive,...
The quick answer: var has a different "scope" and it's normally better to use const and let const is for variables that will not be updated var is...
We know that variables in JavaScript can hold a Boolean value of true or false. As well as this, other JavaScript values equate to truthy or falsy....
Teaching yourself web development has never been easier. There are hundreds of free courses, free books and bundles of content on YouTube. There are...
What are they CSS custom properties aka CSS variables allow you to define a property in a variable that you can use over and over again. There are a...
::before and ::after are CSS pseudo elements. They can add content before or after that element. This is the syntax .class::after { content: "some...