Telegram group - t.me/Reactjs_Interview Please don't judge and comments on my answers. this is just the interview experience and If you know the right answers please comment below which can also help others. Instagram - instagram.com/dev.roshan_ twitter - twitter.com/dev_roshann
@anandwadsinge39132 жыл бұрын
- What is lifecycle method in react ? - How will you convert class based to function based component in react? - How do you manage state in component? - Redux middleware ? => Saga and Thunk - Why do we need middleware in redux implementation? => to capture error log etc. - Why do we need typescript instead of javascript? => - Explain use case with typescript? - Do you know server side rendering in react? - How to style a component in react? => used .css and .style component directly - Have you used any library in react? which one please explain? - In materialUI what does makeStyle function do? - Can we use multiple className in same object for materialUI? Ex. in gridUI can we use? - What is your testing strategy? => we use unit testing (JEST) - I am creating a application and it should support two language - English & Hindi - so you are developing there application in react - so what will be your approach? - Have you worked in CMS (Connect Management System)? => Wordpress - CODE - Team Member size - How do you manage project any tool you use? => gitlab - Are you following any agile method in project - Do you have any experience in Devops?
@DevAditya2 жыл бұрын
Thanks
@olabisiajoseh91412 жыл бұрын
Thank you
@fevicoI2 жыл бұрын
The question standard is decent. It’s not only about easy questions, interviewers check your depth of knowledge, they may expect you to explain in depth about JavaScript stack, and async non blocking operations how it works, etc.
@galax5130 Жыл бұрын
for question 1:34 it will print 1 because setTimeout function goes into callback and takes 1 second to be executed in that mean time x will be declared in function function x() stack frame and it will be accessible for callback function of setTimeout
@MultiReview10 ай бұрын
It will possible because of hosting
@bibhasash73712 жыл бұрын
2nd question answer will be 1 because after the callback function of the setTimeout come inside the callstack the i nis already declared and initialized so it will print 1
@Mbl437 ай бұрын
- [00:00](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) 📝 Coding Logic and Approach - Understanding the order of execution of asynchronous JavaScript code. - Implementing recursion to traverse and extract data from nested objects. - [04:11](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) 🧠 ReactJS Lifecycle Methods - Explaining the three phases of ReactJS lifecycle: mounting, updating, and unmounting. - Converting class-based components to functional components using useEffect for lifecycle methods. - [07:12](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) 🖥️ Managing State in React - Using the useState hook to manage state in functional components. - Describing how to manage state across multiple components using props drilling and Redux. - [10:08](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) 📦 State Management with Redux - Contrasting Redux and Context API for state management in React. - Explaining the concepts of actions, reducers, and dispatch in Redux. - [13:12](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) 🔄 Middleware in Redux - Defining middleware in Redux and its purpose in intercepting actions. - Mentioning Redux Saga and Redux Thunk as examples of middleware. - [15:22](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) 🔤 Advantages of TypeScript in React - Discussing the benefits of TypeScript for error reduction and type safety in React development. - Providing an example of using TypeScript interfaces for component parameters. - [17:16](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) 🌐 Server-Side Rendering with Next.js - Sharing experiences with Next.js for server-side rendering and API handling. - Highlighting advantages like simplified routing and built-in SSR support. - [18:19](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) 🎨 Styling React Components - Mentioning usage of CSS files, styled-components, Sass, Bootstrap, and Material UI for styling. - Explaining the role of the makeStyles function in Material UI. - [19:36](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) ✔️ Unit Testing Strategy - Describing the use of Jest and Enzyme for unit testing React components. - Sharing a preference for testing all components and utilizing snapshots. - [20:48](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) 🌍 Multi-Language Support in React - Discussing globalizing components using libraries for multi-language support. - Admitting lack of familiarity but mentioning previous usage in a project. - [21:30](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) 🛠️ Interaction with CMS (WordPress) - Sharing experience developing a React plugin for WordPress. - Expressing the need to review documentation for data interaction. - [32:49](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) 🔄 Project Management and Version Control - Describing the use of GitLab for task assignment, branch creation, and merge requests. - Adhering to agile methodologies for project management. - [33:05](kzbin.info/www/bejne/iJLTlJSdi9l1Y5I) 💼 Future Opportunities and Learning - Inquiring about potential project assignments and technology stacks. - Asking about the possibility of working on both front-end and back-end tasks.
@soumyajitdey57202 жыл бұрын
The problem with async await was that you didn't put await before res.json() but kudos to you that you remained calm and changed it to .then() chaining and got it done!
@DevAditya2 жыл бұрын
😊 thank you
@barreddimensions71552 жыл бұрын
wow...those were actually an easy questions. I am a MERN developer with two years of gap after graduation and yes, 0 working experience or company exposure 😂. I thought company like infosys have tough interviews. Thank you, I think i gained a litttle confidence. Thanks for sharing...
@DevAditya2 жыл бұрын
It depends on the Interviewer
@crystalclear1782 жыл бұрын
Do We need fake experience after gap?
@crystalclear1782 жыл бұрын
Please give me idea i also have 4years of gap
@programmerarnab90462 жыл бұрын
Truly.. this interview was like asking a newbie.. I thought thier interviews are very hard . Btw I can also point out that a lot of time people do not know how to explain properly.. but these questions are like normal chatting then an interview 😜 we can have debates how hours on these...
@amolchopade76492 жыл бұрын
@@crystalclear178 If you apply as fresher then it will difficult to get call for interview. if you show fake experience then interview gets more difficult.
@aniketbisht7632 жыл бұрын
Hi bro!, At 2:00 it will print the value of i since set time out is an asynchronous function it will go to the callback queue but In the meantime i variable will be defined
@g8dboyplays7902 жыл бұрын
Yes, you are correct!
@shilashm56912 жыл бұрын
Difference between framework and library? Answer: who calls who!? if we call the external code, then it is library. If our code is called by another code then it is framework. It is the concept of Inversion of control!
@DevAditya2 жыл бұрын
Thanks for explaining
@shilashm56912 жыл бұрын
@@DevAdityaPleasure bro, How much they offered?
@aniketbisht7632 жыл бұрын
I thought library is what we can use functions but framework is like the base project in which we can add our functionalities, am I wrong?
@kshitijvengurlekar11922 жыл бұрын
You have to add custom middleware like Redux thunk or saga to do things like fetching data from API. And then you will be able to return a async function from the action which will return a pure JSON object once the API response is received. The interviewer was trying hard to bring you to that point.
@DevAditya2 жыл бұрын
Yeah, that time got confused actually. BTW thanks for explaining
@Kshitij Vengurlekar Not necessarily, you can easily achieve this using a simple useEffect, or create a custom hook to fetch API data. :)
@kshitijvengurlekar11922 жыл бұрын
@@rootnode6571 I want to dispatch an action, And I expect that Action to make an API call , fetch data and update the Redux store. Can you link some article that shows how can useEffect or any other custom hook be used here?
@SaudagarDalve4 ай бұрын
Demonstrated good knowledge with in-depth responses.
@cubastic_rahul2 жыл бұрын
Superb bro....!!!
@kudaykumar12612 жыл бұрын
Thank you so much for sharing this interview... It's really helpful. The interview really good
@swaniketchowdhury2 жыл бұрын
29:30 I think you missed the async keyword. If you are using .then() & .catch(), you don't need to use an async function.
@DevAditya2 жыл бұрын
Right, Actually before this I was implementing async-await & later then-catch that's why forget to remove it
@swaniketchowdhury2 жыл бұрын
@@seenu9633 syntactically i think it will not give any errors, but there is no need.
@pathanaamir382 жыл бұрын
thank you for sharing your experience of intervew.
@amygoru82292 жыл бұрын
Thank you for sharing Sir
@KrishnaDasPC2 жыл бұрын
The menu structure we are using in our app. recursion is what used.
@printmusic5m502 жыл бұрын
Thank you so much for sharing.....
@jayjani7402 жыл бұрын
@03:36 Why recursion? I think you can do it via deep copy. JSON.parse(JSON.stringify(data))
@saifullasoudagar74042 жыл бұрын
we can do like this also right data.map(item, 'name')
@saifullasoudagar74042 жыл бұрын
using lodash method
@pradyumnagarg2 жыл бұрын
I think the interviewers intension was to demonstrate a scenario where you have a nested object upto nth level here value of n is unknown or variable. And we want to react the leaf or the last level of object to extract the data, that's why recursion is the most suitable solution here.
@shubhamrawat26522 жыл бұрын
We can use reduce here
@Manjunath-vv3fg2 жыл бұрын
Thanks brother, this will help me a lot
@kumarswamy29792 жыл бұрын
Hi Roshan, These videos really very helpful. Thanks for this initiative 👍👏🙂
@DevAditya2 жыл бұрын
Glad to know it helps 🙂 Keep supporting
@tarangsachdev42252 жыл бұрын
function myFunction(){ var oa2=2; setTimeout(function(){ console.log(oa); console.log(oa2); },1000) var oa=1; } myFunction() it will not print undefined and 2 instead it will print 1 and 2
@DevAditya2 жыл бұрын
Exactly 😅
@guru60312 жыл бұрын
Yes it is clousers question..
@tarangsachdev42252 жыл бұрын
to understand it clearly, you need to learn how execution context work (Creation Phase and Execution Phase)
@devarora37702 жыл бұрын
is it due to hoisting or due to closure .?
@souravkumar-hl2ot2 жыл бұрын
@@devarora3770 it's hoisting
@abhyudayghatale35272 жыл бұрын
Thanks for sharing!!
@AashishKumar-vb3qbАй бұрын
Thanks , Its helpfull 😃😃
@DevAdityaАй бұрын
Glad to know that 😊
@shilashm56912 жыл бұрын
Prop drilling can be solved using context api and component composition
@CloudMadeEasy2 жыл бұрын
Set time out will take time this is not true.. you need to explain how set time out register in Colstack
@SONUKASHYAP2 жыл бұрын
Can you tell me what was package for this React interview. And You are Freshers or exp.. because questions is like freshers level.
@chayanjana202 жыл бұрын
May be you get 1 cr...congratulations.. 😄😄😄
@joeljohnson14782 жыл бұрын
I am a react developer in Infosys and I'm getting a package of 6.25LPA
@abhayshrivastava20752 жыл бұрын
@@joeljohnson1478 experience?
@toffcodes43372 жыл бұрын
What's your experience?
@aimanhussain2818 Жыл бұрын
@@joeljohnson1478 how to join Infosys..plz suggest
@shubhamambhore57072 жыл бұрын
Thanks for sharing...too helpful 🎉✌🏻
@DevAditya2 жыл бұрын
Glad it helps 🙂 Keep supporting
@paieu Жыл бұрын
its been 3 months into web dev i understood all of this question and know the answer!
@DevAditya Жыл бұрын
Great!
@Lens_n_love2 жыл бұрын
1:56 he wanted to know about hoisting
@dubey_ji2 жыл бұрын
Great bhai 💪👌
@DevAditya2 жыл бұрын
Thank you
@divyanshugarg28312 жыл бұрын
bro passing index as key in a map loop is the worst thing you can do in react learnt it the hard way time stamp 30:00
@RandomGuy34-j1u5 ай бұрын
why ?? what is even wrong in it ??
@kapilkumar20202 жыл бұрын
Thanks for the intiative Really helpful
@DevAditya2 жыл бұрын
Glad to know it helps 🙂
@shubhamraikwar47254 ай бұрын
I think, the answer for this code should be 1 after 1sec and not 0. function x() { setTimeout(function() { console.log(i); }, 1000); var i = 1; } x();
@coder-webdev59072 жыл бұрын
Somebody help me in this problem Please write solution in javascript Write a function called do_allocation(number_of_people, number_of_buses) The function should return a list of number of people who can get into the next bus that comes in based on the following logic: Each bus’s capacity is the sum of the capacities of the previous two buses. Once all the people get in, then the buses can continue, but will have 0 people inside it. This is the case when the number of people are less and there are more buses. So after all the people are already boarded, then the remaining buses will have 0 people boarding. The output of the function is an array/list with the same length as number_of_buses. The total of this output array/list should be less than or equal to the number_of_people. The first bus’ capacity can be set to 1 by default. E.g. Def do_allocation(number_of_people, number_of_buses): …. Your code…. Return array[number of people got into first bus, number of people got into second bus, …. , number of people who got into last bus]
@alenevins10872 жыл бұрын
Was the answer to second ques correct?? I think it will print 1 and not undefined as we used var
@vivekanandareddymaddela2 жыл бұрын
I feel Json.parse(Json.Stringify(obj)) would do work
@aayushrawat69372 жыл бұрын
yes due to Hoisting
@shubhamrawat26522 жыл бұрын
Yes due to hoisting
@ritabratagoswami77242 жыл бұрын
I ran this program i found not only by VAR but also by let and const the hoisting is possible. And printing 1.👍
@WeakCoder2 жыл бұрын
@1:33 just wanted to know if your answer was correct ? Or does JS hoisting take place here ?
@jiteshsharma82582 жыл бұрын
The answer will be 1 because by the time log in timeOut will log the value of i will be 1
@nagarajuguntruttu71452 жыл бұрын
Nice video , can I know the package for this .!
@anusuyadevithalavaisamy14252 жыл бұрын
Thanks for sharing.. it is very helpful for me :)
@DevAditya2 жыл бұрын
Glad it helps 😊 Keep supporting!
@codinggurujii2 жыл бұрын
Can anyone explain exactly how second structure problem will solve?
@sandeeppatil590510 ай бұрын
can you please make the separate list of questions and answers and provide the link
@DevAditya10 ай бұрын
Sure, in upcoming videos 🤗
@sandeeppatil590510 ай бұрын
Thank you, @@DevAditya
@kumarmanish90462 жыл бұрын
4:45 you said componentDidmount for BOTH, component loads and also for component updation. Is that right answer?
@DevAditya2 жыл бұрын
When loads ComponentDidMount When update ComponentDidUpdate
@techie-alien47122 жыл бұрын
Hey @Dev. Roshan ! Its amazing!! This is for experienced level, can you give pointers to level of difficulty for react.js questions, if it was for a current final year student with reference to this interview. Your guidance would help me a lot. Thanks!
@DevAditya2 жыл бұрын
Thank you 😊 & It was for an experienced candidate but you can consider these questions, it'll be beneficial for you.
@rakeshpatel19752 жыл бұрын
@Roshan, How much experience do you have?
@kumarmanish90462 жыл бұрын
OMG who uses a varibale with Capital letter!!!!!!!!! UseState? or useState? 9:00
@DevAditya2 жыл бұрын
I'll suggest not to consider my answers do your own research, It's just an Interview experience. BTW I was not running the code, just wanted to explain.
@vivekverma-gg6be2 жыл бұрын
@@DevAditya Nice explanation overall. Just for closure question variable defined below the setTimeout will give the same result as 1.
@DevAditya2 жыл бұрын
@@vivekverma-gg6be Thank you
@souvikbhattacharyya99522 жыл бұрын
bro was not there any Dsa round ? and aptitude round. i am a fresher that's i want to know more
@DevAditya2 жыл бұрын
It depends on the interviewer.
@AnuMessi102 жыл бұрын
mostly when you apply for front-end/back-end/full stack roles, the primary questions are based on the tech stack (JS and react in this case), DSA is usually optional upto the interviewer
@nirmalrathore59132 жыл бұрын
What is happening for me interview not get cleared but I am handling 3 project 2 as a shadow Dev.
@DevAditya2 жыл бұрын
They expect theoretical explanation in better way.
@sourabhjyotidasusedlessguy61072 жыл бұрын
My bro seleced everywhere but goes nowhere.
@akshayyadav76292 жыл бұрын
Bro well can you also tell that what are the questions for the freshers ?
@DevAditya2 жыл бұрын
You can consider the same
@Hindutvavadi2 Жыл бұрын
This interview for entry level??
@niteshbisht312 жыл бұрын
Can u make an explanation video for the question that was asked at 03:00 min?
@DevAditya2 жыл бұрын
Sure, will try to cover these questions on a separate video
@Jayscoffee2 жыл бұрын
what was the salary offered?
@jenasusil6 Жыл бұрын
Why you use middlware ? We use it for asynchronus operation. Redux thunk usecase? redux thunk is a midleware, as i mentioned middleware is use for async operation. insted of returning a action ,it will return a function. this function is a pure function. How many years of experiance you have ? Please go through the basics of everything. it seems like you have prepared randomly with some video tutorial. not clear about anything. while you use async await you should not use .then and .catch. you should use try catch .once you mark a function async this function will return a promice so no need to use .then
@DevAditya Жыл бұрын
Thanks for the suggestion
@vimalsankar25032 жыл бұрын
how did you record this interview? any tool?
@DevAditya2 жыл бұрын
cmd+shift+5
@websiteaudit2 жыл бұрын
Brother please add the filter code .on fetching .
@websiteaudit2 жыл бұрын
Waiting for reply please write the both methods
@itsMe-oq5em2 жыл бұрын
How much package u got brother?
@satishmaurya20892 жыл бұрын
thanks buddy
@notyournormaldev14192 жыл бұрын
All questions were not answered clearly...how you are selected..half sorted answers.
@sivanagajayavardhanchintam98812 жыл бұрын
Bro, could you please show me way to learn React ..I'm a beginner Mern developer... any ways about React,node js and MongoDB will help me a lot.
@likhithsagar68472 жыл бұрын
hey there, you can checkout TheNetNinja tutorials on KZbin. It got complete playlists for all ur requirements : )
@rohitsakhare22472 жыл бұрын
I was also selected, but the offer letter has not come yet, I had a tech round,tech manager round ,after that they mailed me the documentation,i submited documentation but still waiting for offer letter , i gave interview on 9 Apr
@DevAditya2 жыл бұрын
All the best.
@rohitsakhare22472 жыл бұрын
@@DevAditya any idea about ? Why they are taking time for release offer letter
@SagarKumar-db2xy2 жыл бұрын
@@rohitsakhare2247 bhai kanha apply kiya tha
@sanjibmajhi852 жыл бұрын
@@rohitsakhare2247 for my case I've given my first technical round on 19th march On 20th March I've got a mail to upload documents On 25th March I've given managerial round On 28th March I've HR called me for salary negotiation, and they told me to wait 2 weeks On 8th April I've got my offer.
@vishaltiwari39002 жыл бұрын
@@sanjibmajhi85 hello my interview was on 23rd APR 2022 on same day at night got documents upload mail but no update after that.
@sachin__ak2 жыл бұрын
The question level was very basic.
@jason5767 Жыл бұрын
Is it for freshers? or experienced 1-3 years interview?
@karthikbalaji3832 жыл бұрын
what is the package?
@akshayyadav76292 жыл бұрын
I think this interview is for experience candidate right. How much experience is required for the interview ?
@DevAditya2 жыл бұрын
It was for 2+ exp
@poulamimukherjee91932 жыл бұрын
Hey, what was your answer when he asked you if you have knowledge about DevOps?? Was not able to catch it properly in the video. TIA😊
@DevAditya2 жыл бұрын
I'll suggest not to consider my answers.
@poulamimukherjee91932 жыл бұрын
@@DevAditya But I think the interviewer was impressed by your answer and ddnt press the question any further. You fared well😊
@DevAditya2 жыл бұрын
@@poulamimukherjee9193 My answer on it was "No but I'm curious to learn it"
@DevAditya2 жыл бұрын
@@poulamimukherjee9193 thank you 😊
@mohsinpathan58732 жыл бұрын
Thanks for sharing..
@DevAditya2 жыл бұрын
Keep supporting 😊
@gullukumar44972 жыл бұрын
Paisa kitna (range) de rha h bhai?
@bryce85952 жыл бұрын
did you get the job? i go for an interview in may little nervous. Also the first question I is still gonna be one because its initialized in the outer function, if it was initialized in the inner function x wouldn't know what it is
@DevAditya2 жыл бұрын
Exactly, I made this mistake. BTW received postive feedback from them
@DevAditya2 жыл бұрын
All the best
@ps_abhishek2 жыл бұрын
I think the interviewer may be a Malayaali😁. That slang..🧐
@abhinavvp59362 жыл бұрын
Felt that too
@bhagyalakshmi10532 жыл бұрын
Letter never confirm letter scene
@arunsoni54712 жыл бұрын
Nice..
@DevAditya2 жыл бұрын
Thanks
@hemanthreddy58992 жыл бұрын
Package?
@shivangchheda63112 жыл бұрын
how did he land this interview? cause in mine there nothing like this asked also I am freshers is it for someone with experience
@DevAditya2 жыл бұрын
Yup Exp
@shivangchheda63112 жыл бұрын
@@DevAditya what if you have similar knowledge and is it possible to apply for same ?
@abhishekmaldikar97042 жыл бұрын
Was this a fresher or experienced interview
@carryminatifans58962 жыл бұрын
Wow...
@vancedtube962 жыл бұрын
is it for fresher job? or experienced one? how many years.
@DevAditya2 жыл бұрын
2+ exp
@surendravaddi90542 жыл бұрын
how many years of experience ?
@DevAditya2 жыл бұрын
3+
@compeng..15102 жыл бұрын
@@DevAditya hii bro
@compeng..15102 жыл бұрын
@@DevAditya i also want to crack mnc company but the problem is i have signed a bond with my startup company.
@DevAditya2 жыл бұрын
@@compeng..1510 you must have to complete it then.
@nikhilarya77122 жыл бұрын
@@DevAditya bro koi compulsory hota hai bond pura krna mtlb koi jabardasti to nhi hoti h isme?
@gulrezeqbal30482 жыл бұрын
How much experienced?
@ganeshmandapati47992 жыл бұрын
How much percentage hike you got??
@DevAditya2 жыл бұрын
Can't disclose here, Insta or telegram
@ganeshmandapati47992 жыл бұрын
@@DevAditya check your Instagram
@ganeshmandapati47992 жыл бұрын
@@DevAditya reply on Instagram bro
@DevAditya2 жыл бұрын
@@ganeshmandapati4799 ok
@KarthikJsuvarna2 жыл бұрын
Was there any DSA
@DevAditya2 жыл бұрын
Yes Depends on the interviewer
@KarthikJsuvarna2 жыл бұрын
@@DevAditya what really? That's great
@Ak-.-472 жыл бұрын
Is this for freshers or experienced.
@DevAditya2 жыл бұрын
Exp
@inspiringstories1432 жыл бұрын
that person selected yes or not
@DevAditya2 жыл бұрын
🎉 Selected
@6713G2 жыл бұрын
Whats you experience bro..!!?
@satigamingofficial97382 жыл бұрын
How many years of experience you mantion in your resume for this interview..
@DevAditya2 жыл бұрын
2+
@piltonswrangbrahma51402 жыл бұрын
CTC?
@malikshahid8862 жыл бұрын
Was it for a fresher or u had some prior experience?
@DevAditya2 жыл бұрын
Exp
@malikshahid8862 жыл бұрын
@@DevAditya Can i apply as a fresher? How to approach?
@DevAditya2 жыл бұрын
@@malikshahid886 Not sure about the Fresher but you can take help of Payroll companies or it would be better to connect on LinkedIn & ask for reference who's working there.
@ManishGupta-de9qf2 жыл бұрын
For how many years of experience was this role about?
@mrsrv72 жыл бұрын
Based on the questions, I think this might be for a fresher
@kamleshbachani81322 жыл бұрын
Inverview for which level?
@DevAditya2 жыл бұрын
Exp
@inshafahmed8656 Жыл бұрын
function x() { setTimeout(() => { console.log(i); }, 1000); var i = 1; } x(); // This will print => 1
@DevAditya Жыл бұрын
Right 👍
@thepravinbtech2 жыл бұрын
Ishiitttt visibbbbble
@Abhinendrachauhan19932 жыл бұрын
How many total rounds were there? Was it the first round.... and what were the other rounds, please also tell me your experience.. And congrats..
@DevAditya2 жыл бұрын
1 Tech round only & HR exp -2+
@DevAditya2 жыл бұрын
Thanks
@Abhinendrachauhan19932 жыл бұрын
@@DevAditya Thanks for the response. My interview is also going to get scheduled soon. The video was really helpful.
@DevAditya2 жыл бұрын
@@Abhinendrachauhan1993 All the best 😊 Be prepared with ES6 features in deep also
@Abhinendrachauhan19932 жыл бұрын
@@DevAditya Thanks. I will look into that.
@udayshankhar84822 жыл бұрын
Is this a fresher interview bro??
@DevAditya2 жыл бұрын
No, but you can consider
@omkarshinde74662 жыл бұрын
3 years ye hisab se bahot fattu que the 🤣🤣
@ankitagupta3882 Жыл бұрын
How much experience did you have when you gave this interview ?
@DevAditya Жыл бұрын
2+ in react
@chetanpl2 жыл бұрын
Your voice is low
@DevAditya2 жыл бұрын
You may use the earphone bro
@chetanpl2 жыл бұрын
@@DevAditya after use of headphone. I am replying you.