Professional-JavaScript-Course
Professional-JavaScript-Course copied to clipboard
This repo contains everything you need as a student of the Professional JavaScript Course by ByteGrad.com
In the Corp Comments project, we didn't take into account the fact that there can be several different hashtags in one comment.
It is indeed a major hassle to match the colors on the jobs, but there is a simple solution. Just hash the id with the last digit to each color,...
I implemented the bookmark clickhandler in rmtdev project and it works. But now I want it to work like the rmtdev project in React and Next JS course? How shoud...
Just add pagination__button--hidden class to line 77 in index.html ``` ``` Add bookmarkClickHandler feature. ```
//comment in javascript const counterEl = document.querySelector('.counter'); const increaseButtonEl = document.querySelector('.counter__button--increase'); const decreaseButtonEl = document.querySelector('.counter__button--decrease'); const resetButtonEl = document.querySelector('.counter__reset-button '); const counterValueEl = document.querySelector('.counter__value'); resetButtonEl.addEventListener('click', function(){ // set counter value...