bhai itni badhia video banai k k mai netflix ko chorh k tujhe binge watch kar raha hu :D
@sumanthprabhu11 Жыл бұрын
Thank you for making these videos. This really helps, and what stands out is your code is very professional and all other videos on KZbin looks like rookie level compared to yours.
@lokeshkhati8413 Жыл бұрын
Thanks brother ❤, for creating such great content.
@anandbaraik5010 Жыл бұрын
Thanks man, i appreciate your commitment to provide a better content 👏
@nallaparajuamareshvarma8471 Жыл бұрын
Great video Vedant, have been waiting for this from long time
@ayushkushwaha171 Жыл бұрын
Nice video, we could've added a "loading..." state as well to show up when there is no data and an API call is pending, like below: {data && data.length > 0 && listbox(data, activeIndex)} ---> {isLoading && Loading...} ---> {query && !isLoading && data && data.length === 0 && noResultMessage()} {error && errorMessage()}
@gautammsuthar Жыл бұрын
Thanks for the effort boss💙💙🙌🙌
@nallaparajuamareshvarma8471 Жыл бұрын
Next video on Carousel please
@kumarrishabh35875 ай бұрын
damn! why did i not discover your channel earlier
@jagdishjena90584 ай бұрын
Bhai espe video banana please Build a search bar with denouncing and throttling
@prateekthakur34655 ай бұрын
Since it is an interview, why not write the debouce function yourself ?
@sumanthprabhu11 Жыл бұрын
Hi I've not used the lodash debounce but I debounced it using setTimeout in the useEffect Is this fine? useEffect(() => { if (!query) { setData(null); setError(null); return; } const controller = new AbortController(); const signal = controller.signal; const debounce = setTimeout(() => { fetchData(query, transformData, signal); }, debounceWait); return () => { clearTimeout(debounce); controller.abort(); }; }, [query, transformData, fetchData, debounceWait]); return [data, setData, error]; };
@js_cafe Жыл бұрын
Hey, nope this won't be correct, If you are using debounce of your own then you have to write a polyfill for it. You can join us on discord and It is difficult for me to reply in comments discord.com/invite/YTZkV7By22
@salauddin3693 Жыл бұрын
i did not understand where did write Abortcontroller code?
@anchalraj32856 ай бұрын
where is the github link of this project bro?
@akashpatil9043 Жыл бұрын
Is this machine coding round ask in every company? Bhai
@santoshmore2953 Жыл бұрын
How much time do company provide us to solve this problem in real interview?
@vatansrivastava7279 Жыл бұрын
Hey where can i find these questions for interview preperation ?
@js_cafe Жыл бұрын
jscafe.dev/
@roopchandjangir686211 ай бұрын
bhai sab ko searchbox component me as a prop kyu pas karte he, direct search box me hi use kyu nhi karte
@js_cafe11 ай бұрын
To make search box customisable
@roopchandjangir686211 ай бұрын
So basically we need to pas props from parent as standard technique