frontend-interview-questions icon indicating copy to clipboard operation
frontend-interview-questions copied to clipboard

Frontend Interview Questions from My Youtube Videos

Results 13 frontend-interview-questions issues
Sort by recently updated
recently updated
newest added
trafficstars

added deps as init value for prevDeps in ordeer to prevent firing of useEffect on non-deps' state change (happens only on first run)

if (isMouseDown) { const startBox = selectedBoxes[0]; const endBox = boxNumber; const startRow = Math.floor((startBox - 1) / cols); const startCol = (startBox - 1) % cols; const endRow =...

Added a question bar to toggle back and forth on the question, it can be improved by: 1. Adding a submit button then show the result. 2. Update the question...

In useEffect, when there is an update of state, the cleanup function of old state runs and then the callback function of the updated state runs. In your code, when...

I tried to add the code we had on the last part of the video, what we saw in video did not work and threw error, because the totalPages was...

Problem : When we fill the time as 01 : 00 : 05 , then the sequence which countdown following is as 01:00:05 -> 01:00:04 -> 01:00:03 -> 01:00:02 ->...

Fixes : #15 Where we are formatting the seconds time, I change the value from 59 to 60. ## Summary by CodeRabbit * **Bug Fixes** * Corrected the seconds-to-minutes rollover...