complete-javascript-course icon indicating copy to clipboard operation
complete-javascript-course copied to clipboard

Starter files, final projects, and FAQ for my Complete JavaScript course

Results 210 complete-javascript-course issues
Sort by recently updated
recently updated
newest added

Hi, there is a small typo on the Optional Chaining (?.) assignment from [codingheroes.io](https://codingheroes.io/assignments/optional-chaining.html). `getFirstKeyword(book[0]);` should be: `getFirstKeyword(books[0]);` since the provided array is called books.

I fixed a small bug with double-click when you are using dots and arrows (Either left and right) simultaneously!

Hi guys I have installed the parcel, but when I try to start it as the video says, I get an error. It says the main file format should not...

My Forkify recipe app was working in my local machine but not working after i delployed it with vercel. pls i need help to fix it

PS C:\Users\manis\Downloads\complete-javascript-course-master (1)\complete-javascript-course-master\18-forkify> npm start > [email protected] start > parcel index.html Server running at http://localhost:1234 🚨 Build failed. unknown: Entry C:\Users\manis\Downloads\complete-javascript-course-master (1)\complete-javascript-course-master\18-forkify\index.html does not exist "index.html does not exist why...

pageXOffset and pageYOffset are deprecated and have been updated to scrollX and scrollY respectively. scrollX & scrollY do not work in Internet Explorer and older browsers. Conditional OR maintains compatibility...