Fresher's Frontend Interview

  Рет қаралды 65,779

ProCodrr

ProCodrr

Күн бұрын

The Complete JavaScript Course: • The Complete JavaScrip...
The Complete React Course: • The Complete React Cou...
Complete Frontend Course: • Web Development Course...
The Complete CSS Course: • Getting Started with C...
Redux Full Course in Hindi: • Redux Fundamentals in ...
Social Media
🌐 Telegram: t.me/procodrr
🌐 Linkedin: / anurag-singh-web-devel...
🌐 Instagram: / procodrr
🌐 Twitter: / anuragsinghbam
🌐 Portfolio: anuragsinghbam...
#react #procodrr #webdevelopment #mockinterviews #frontendinterview #javascriptinterview

Пікірлер: 85
@NikhilDeveloper-n4r
@NikhilDeveloper-n4r 3 ай бұрын
00:02 Practice JavaScript and React thoroughly for better interview performance 02:23 CSS skills and interview categories 09:01 Inheritance in CSS 12:11 Synchronous code can block the main thread 22:00 Discussing variable assignment and destructuring in Javascript 25:11 Understanding array destructuring in JavaScript 31:58 Creating objects using Factory functions 35:05 Implementing a digital clock using JavaScript 56:31 Formatting time in JavaScript 1:03:27 Optimizing code with Date object in JavaScript Console 1:10:04 Improving core JavaScript skills
@avtheprowd
@avtheprowd 9 ай бұрын
at last for giving up the space in PM or AM you can use css gap property! he had already created clock div a flex box. so, all span elements have gap between them using gap property :)
@Believer-yk7th
@Believer-yk7th 9 ай бұрын
Thanks for English content ❤
@RohanGotwal
@RohanGotwal 9 ай бұрын
The content quality is really very good! Can you also post some mock for 3 years frontend exp with JS + React.js + system design, I am unable to find something similar on the internet, I am also a Frontend Dev with 3 YOE looking to switch job so I am revising my fundamentals and your content is really helpful!
@dineshkum4r
@dineshkum4r 9 ай бұрын
What's ur CTC right now
@RohanGotwal
@RohanGotwal 9 ай бұрын
@@dineshkum4r 12 LPA
@totalgaming1569
@totalgaming1569 8 ай бұрын
​@@RohanGotwalmonth or year
@eng.procodrr
@eng.procodrr 8 ай бұрын
Today I will upload React Interview of a Senior developer. It is a really good interview. Make sure to watch it at 7 PM.
@RohanGotwal
@RohanGotwal 8 ай бұрын
Will watch it for sure, also i have an interview day after tomorrow for the position of senior frontend engineer at a US based funded startup so it will help me revise things up​@@eng.procodrr
@akritisingh5873
@akritisingh5873 9 ай бұрын
Constructive interview😇
@ANKITMISTRY-cr9tu
@ANKITMISTRY-cr9tu 5 ай бұрын
Most simple way let clock = document.querySelector('#clock') setInterval(()=>{ let date = new Date(); clock.innerHTML = date.toLocaleTimeString(); },1000);
@tgayush1424
@tgayush1424 9 ай бұрын
Ohhh sir logo change kar diya
@sayanchakraborty4712
@sayanchakraborty4712 Ай бұрын
I love your interview videos ❤
@akanshasaraswat7274
@akanshasaraswat7274 6 ай бұрын
Sir coding level 0 hn Kuch nhe aata usme , kaise logic lgata hn kya samjhte Pls video bnao for help How to start coding
@KashifUllah-k1o
@KashifUllah-k1o 8 күн бұрын
Great Contents, can i have an interview with you sir?
@ravishbisht502
@ravishbisht502 9 ай бұрын
Sir bring 1 interview in every 2 days plzz
@tejaspatel3680
@tejaspatel3680 9 ай бұрын
How can i get a chance to be interviewed by you please tell sir I really need to know about my practices
@codinglife91
@codinglife91 6 ай бұрын
26:00 const [...a]= [10,20,30,40,50] console.log(a[3]) output- 40
@saiprashanth3424
@saiprashanth3424 9 ай бұрын
Hi Cab anyone clarify one thing I am frontend developer with 2 plus years of work experience but i dont know css much In my company there will be a dedicated css developers So is css necessary to be a frontend developer????
@4444-c4s
@4444-c4s 9 ай бұрын
No not necessary. I think you must be in Product based company. In many service based companies css part is handled by Developers
@saiprashanth3424
@saiprashanth3424 9 ай бұрын
@@4444-c4s you are right I work for a product based company But to survive in service based I need to learn css right 🚶🏿🚶🏿
@eng.procodrr
@eng.procodrr 9 ай бұрын
Although you can go ahead in your career even without learning much CSS. Still I would recommend you to learn CSS as a frontend developer because when have that knowledge you'll feel empowered and you won't have to be dependent on some else for you UI related work.
@4444-c4s
@4444-c4s 9 ай бұрын
@@eng.procodrr bhaiya how can I get into your Google Meet that happens eevery Sunday?
@mohdanzar1895
@mohdanzar1895 6 ай бұрын
How to apply for these interviews? please reply sir...I've been learning web dev from past 2months...
@pareshkamaliya2493
@pareshkamaliya2493 9 ай бұрын
sir according to Gemini: the syntax const {3 : a} to directly access an element by index within destructuring assignment isn't valid JavaScript. is this true?
@eng.procodrr
@eng.procodrr 8 ай бұрын
No, it a valid syntax.
@rohitbabburu
@rohitbabburu 8 ай бұрын
Sir, what will you do after selection? I have this doubt. they are already experienced candidates . are they looking for new company and are you helping them to switch ..,please reply
@JayasundraTabiliyage
@JayasundraTabiliyage 2 ай бұрын
I can't understand Hindi,so where can I learn your English js videos?
@sarthak5885Vyas
@sarthak5885Vyas 5 ай бұрын
Sir, how can i give interview
@tgayush1424
@tgayush1424 9 ай бұрын
Ohhh yeh English channel hai wahhh
@swagatpandak7325
@swagatpandak7325 8 ай бұрын
Small doubt: Can someone make that L shaped using span tag? 6:55
@BabjiVunna
@BabjiVunna 9 ай бұрын
console.log("Start"); function busyWait(duration) { return new Promise(resolve => setTimeout(resolve, duration)); } busyWait(2000).then(() => { console.log("This is the code running between Start and End"); console.log("End"); });
@pareshkamaliya2493
@pareshkamaliya2493 9 ай бұрын
console.log("start"); setTimeout(() => { console.log("end"); }, 2000); can we do this?
@nagasudhamahavratayajula837
@nagasudhamahavratayajula837 6 ай бұрын
Hello Sir, how can we register for a mock interview?
@HelloNaim0
@HelloNaim0 Ай бұрын
How can i join here?
@Airudan
@Airudan 8 ай бұрын
bhai es interview ke bases pe kitne LPA milenge es bhai ko
@victorDS534
@victorDS534 9 ай бұрын
Bhaiya english kse sikha aapne and iske upar ek video banao
@icetmzz9074
@icetmzz9074 9 ай бұрын
i can solve this issues without any preparation, i think he is beginner
@_tobecontinued
@_tobecontinued 6 ай бұрын
His theory knowledge is good
@roshanchauhan1123
@roshanchauhan1123 5 ай бұрын
Socket connection padho
@manishvishwakarma4538
@manishvishwakarma4538 4 ай бұрын
Aise interview me 9/10 score krne ke baad expected salary kya hogi
@deepikachauhan2494
@deepikachauhan2494 4 ай бұрын
i want to give you interview
@Maik.iptoux
@Maik.iptoux 6 ай бұрын
Minute 58:   is the magic
@the__developer
@the__developer 9 ай бұрын
Next part?
@ramsha1301
@ramsha1301 Ай бұрын
29:33
@gauravparasar4571
@gauravparasar4571 9 ай бұрын
new channel ??
@eng.procodrr
@eng.procodrr 9 ай бұрын
Yes kzbin.info/www/bejne/pXfEpXt9jqh1h6s
@PraNihaal
@PraNihaal 9 ай бұрын
upload experienced interviews
@webdesignersandip7469
@webdesignersandip7469 9 ай бұрын
It's a fresher interview?
@100gbps2
@100gbps2 Ай бұрын
console.log('start'); const seconds = 2000; const n =200000000; for(let i=1 ; i { console.log(i); },seconds) } console.log('end')
@iganic7574
@iganic7574 9 ай бұрын
New channel?
@cbazxy2697
@cbazxy2697 9 ай бұрын
Take some time to find out yourself dude, watch his first video🤷‍♂️
@iganic7574
@iganic7574 9 ай бұрын
​@@cbazxy2697😅
@rijoksd
@rijoksd 9 ай бұрын
@rizwan6568
@rizwan6568 9 ай бұрын
Theyy ivideyum Malayali 🫵😆
@rijoksd
@rijoksd 9 ай бұрын
@@rizwan6568 Ha egane manasilayi
@rizwan6568
@rizwan6568 9 ай бұрын
@@rijoksd kasaragodil evdeya?
@rizwan6568
@rizwan6568 9 ай бұрын
@@rijoksd brototype il aano padikunne?
@rijoksd
@rijoksd 9 ай бұрын
@@rizwan6568 Futura labs Calicut, Bro entha cheyunne
@Dev.prashant.k
@Dev.prashant.k 9 ай бұрын
Good evening sir
@jainstrain2611
@jainstrain2611 Ай бұрын
Javascript first question: Answer : That fill stopped the main thread for a sec !
@ravishbisht502
@ravishbisht502 9 ай бұрын
Nice
@ItCoursesForAll
@ItCoursesForAll 3 ай бұрын
The worst interview waste of time😅
@TayabaTariq-e9k
@TayabaTariq-e9k 8 ай бұрын
assalamoalaikum How can i get a chance to be interviewed by you please tell sir
@swarup868
@swarup868 7 ай бұрын
console.log("start"); let res=0 for (let i=0;i
@akshitsoni9699
@akshitsoni9699 9 ай бұрын
Bro i think you should talk a little bit with more energy it feels like you are asking those questions without any energy sounds like buzzzz......
@jameelsikandar
@jameelsikandar 9 ай бұрын
watch in 1.5x like me
@praveen-345
@praveen-345 9 ай бұрын
Hi Anna
@eng.procodrr
@eng.procodrr 8 ай бұрын
Hi Praveen
@neerajpawar797
@neerajpawar797 7 ай бұрын
Q. const [a] = [10,20,30,40,50] so can we do this also Ans : - const [...a] = [10, 20,30,40,50] console.log(a[3]) // 40 can anyone tell me is it right or wrong
@praveen-345
@praveen-345 9 ай бұрын
Hi sir
@anaskhan4131
@anaskhan4131 2 ай бұрын
Doesn't make any sense to watch this type of content beacuse in span of 1 hour he simply asked few questions it's totally time wasting
@aditya-d-
@aditya-d- 9 ай бұрын
english interviews are better
@zalaam_0
@zalaam_0 6 ай бұрын
simple clock const clock = document.querySelector(".clock"); setInterval(() => { const time = new Date(); console.log(time.toLocaleTimeString()); clock.textContent = time.toLocaleTimeString(); }, 1000);
@pranavJha93
@pranavJha93 27 күн бұрын
const hours = document.querySelector('.hours'); const minutes = document.querySelector('.minutes'); const seconds = document.querySelector('.seconds'); setInterval(() => { const date = new Date(); hours.textContent = date.getHours().toString().padStart(2, '0'); minutes.textContent = date.getMinutes().toString().padStart(2, '0'); seconds.textContent = date.getSeconds().toString().padStart(2, '0'); }, 1000);
@deepaksinghjethi2914
@deepaksinghjethi2914 9 ай бұрын
function runLoopForSeconds(seconds) { const startTime = Date.now(); while (Date.now() - startTime < seconds * 1000) { console.log("delay); } } // Call the function with the desired number of seconds runLoopForSeconds(5); // Runs the loop for 5 seconds
Fresher's Frontend Interview | JavaScript and React | Selected
1:35:44
Web Developer Roadmap (2025) - Everything is Changing
21:48
CodeWithHarry
Рет қаралды 707 М.
How to treat Acne💉
00:31
ISSEI / いっせい
Рет қаралды 108 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
Node.js vs Hono.js
7:24
midulive
Рет қаралды 27 М.
10 Must Know Tips From a Senior React Developer
16:56
Cosden Solutions
Рет қаралды 15 М.
3 Years Experienced React Interview
1:16:16
ProCodrr
Рет қаралды 133 М.
2.5 Years Experienced Best JavaScript Interview
2:03:06
Anurag Singh ProCodrr
Рет қаралды 371 М.
Beginner React.js Coding Interview (ft. Clément Mihailescu)
36:31
Ben Awad
Рет қаралды 2,2 МЛН
Easy Google Coding Interview With Ben Awad
28:00
Clément Mihailescu
Рет қаралды 1 МЛН
[ Live ] React JS Interview 🤯 | Frontend UI Questions 🤒
1:12:35
Akshay Saini
Рет қаралды 395 М.