React Coding Interview Questions | React JS Interview | React JS machine coding round

preview_player
Показать описание
Hey everyone, In this video we will learn to create progress bar in Javascript

So Stay tuned! And do watch this video till the end 🙏

Incase you need any support or career guidance

Subscribe here 🤗 -

Timestamps -
0:00 Introduction
0:30 Connect with me
0:40 Problem Statement
1:45 HTML
3:20 CSS
6:25 JS

Link to other videos 📚 -
Cleartrip Frontend Interview
Polyfill for map and foreach -
Frontend System Design 🧑‍💻 -
MMT Interview -
Top DSA Questions -

#ReactJSInterview #JavascriptInterview
Рекомендации по теме
Комментарии
Автор

Hello amazing viewers! 🌟 We hope you're enjoying our content. If you find this video helpful, don't forget to give it a thumbs up 👍, share it with your friends 📤, and hit that subscribe button 🔔 to stay updated with our latest videos. Your support means the world to us! Thank you for being a part of our community! 💙

akashingole
Автор

In this I learned new concept infinite asynchronous bug
Thank You

MOHAMMADYUSUFBABA
Автор

function Handle (){
let value= 0;
let interval;
interval = setInterval(()=>{
if(value === 90)
{
clearInterval(interval)
completed.innerText = "completed"
start.disabled = false

}
if(value ===10 && value <=100)
{
start.disabled = true
}




button will be disabled once the progress starts and gets enabled once the progress bar gets to 100%

bhaviljainnnnnnn
Автор

Hi, great video.
The bug which you handled, I think that this can also be solved by disabling the button while the set interval is running and then enabling it again when the interval is cleared.
Please correct me if i am wrong anywhere.

harshitgarg
Автор

Please bring more videos like this bro

Lucifer-xtun
Автор

const buttonRef =
const childRef =

buttonRef.addEventListener("click", () => {
let width = 0;
for (let i = 1; i <= 10; i++) {
setTimeout(() => {
width += 30;
childRef.style.width = `${width}px`;
= "green";
childRef.textContent = `${(width / 300) * 100}%`;
}, i * 1000);
}
});

tsdineshjai
visit shbcf.ru