Frontend Interview Experience (TazorPay) - Javascript and React JS Interview Questions

  Рет қаралды 94,225

RoadsideCoder

RoadsideCoder

Күн бұрын

Пікірлер: 206
@RoadsideCoder
@RoadsideCoder 2 жыл бұрын
Follow me on Instagram or you may fail in your interview 🤓 - instagram.com/roadsidecoder/ If this video gets good response, I will make more interview videos, so, do share it with others 🔥
@jaisharma545
@jaisharma545 2 жыл бұрын
++ Follower;
@aahaan8647
@aahaan8647 2 жыл бұрын
Please add video about jest unit testing
@akshayshinde2403
@akshayshinde2403 2 жыл бұрын
I would like to know for what position you applied? SDE1 or SDE2
@gullukumar4497
@gullukumar4497 2 жыл бұрын
@@aahaan8647 bhai documentation padhna start kr warna tutorial dekhte dekhte zindagi nikal Jani h
@gullukumar4497
@gullukumar4497 2 жыл бұрын
@@akshayshinde2403 ye sare questions SD1 ke h bhai.
@ayushsingh8975
@ayushsingh8975 2 жыл бұрын
Really need DSA with JS and it will be great to learn from you.
@nikhildosapati8719
@nikhildosapati8719 2 жыл бұрын
The video was very helpful. Can you please create a series which have questions about DSA with JS? That would really help many developers. Thanks :)
@nirmalshah9947
@nirmalshah9947 2 жыл бұрын
A simplified version of pangram can be this too: const string = "when zombies arrive quickly fax judge pat"; const alphabet = "abcdefghijklmnopqrstuvwxyz"; const isPangram = (alphabet, str) => { let result const alphabetArr = [...alphabet]; for (let i = 0; i < alphabetArr.length; i++) { if (str.includes(alphabetArr[i])) { result = true; } else { result = false; } } return result; }
@SuperYoman100
@SuperYoman100 2 жыл бұрын
We can use Regex for this as well, right?
@nirmalshah9947
@nirmalshah9947 2 жыл бұрын
@@SuperYoman100 You can, yes but personally, I tend to keep my programs as simple as possible. 10 years of experience with JS has taught me this at least
@divyummmmmm
@divyummmmmm Жыл бұрын
Its not giving correct result
@Abhishek_raj_gupta
@Abhishek_raj_gupta Жыл бұрын
after 10 yr developer will forget dsa and basic logic like you. run with str = "z" you'll get true lol
@RoshanBakhla
@RoshanBakhla 2 жыл бұрын
Bhaiya make more video related to frontend interview questions……👍
@RoadsideCoder
@RoadsideCoder 2 жыл бұрын
Definitely
@venkateshpachigulla
@venkateshpachigulla Жыл бұрын
new Set(str.replaceAll(' ','').toLowerCase().split('')).size===26 For Pangram string checker.
@arunbohra4346
@arunbohra4346 2 жыл бұрын
this.name will not be undefined in the arrow function rather it would be an empty string as window object consists of a name property. If we use it in some other environment like nodejs then it would be undefined. BTW I like your videos they help a lot
@sshikhar4290
@sshikhar4290 2 жыл бұрын
That's super helpful. Thank you so much for this interview Q&A series, helps soooooo much. If possible could you please make a DSA series using Js. Thanks in advance 🙂
@atmanirbharladka4467
@atmanirbharladka4467 2 жыл бұрын
Tazorpay ? It's so difficult to figure out which company it was. Unable to think of any other fintech with similar name. So subtle.
@RoadsideCoder
@RoadsideCoder 2 жыл бұрын
Lol, ikr I'm so smart 😎🤓
@arunbohra4346
@arunbohra4346 2 жыл бұрын
Instead of waiting 2000 years for create-react-app you can use vite. Only thing about vite is that it provides a minimal setup for development.
@ishansharma3433
@ishansharma3433 2 жыл бұрын
Could you please explain while changing quantity you use the filter instead of map. As I understand, a filter doesn't change the value of elements of the array but filters out elements based on condition. Why this is giving correct output?
@jonnjon1
@jonnjon1 Жыл бұрын
Maybe you have already solved it but after a lot of research I understood what he did. Min 23:11 line 16. Cart Is being reassigned the previous version of itself but filtered: - the filter : it will first find the product with the provided id. - Then the ternary ( if) it will use the filter to asign a new value to Qty which is the new payload ( previously changed to +1 or -1 ) if the qty is 0 the filter will consider it as false, so the element will not be added to the filtered array. -after the : it will return the updated quantity Please correct my if I'm wrong, but this is the conclusion that I found after hours of being stuck with this masterful piece of code.
@RoadsideCoder
@RoadsideCoder Жыл бұрын
Its because filter will only return those filtered put elements but map will return filtered out elements along with empty slots for other elements
@subhadeepghosh2813
@subhadeepghosh2813 Жыл бұрын
why its getting removed autometically from cart ?
@nikithamalkapuram8728
@nikithamalkapuram8728 2 жыл бұрын
Please Please do DSA with Js series. I rejected lot of interviews with this DSA only.
@darshitraj1694
@darshitraj1694 2 жыл бұрын
Recently,I gave Zepto's UI Interview. For Cart login I used Arrays to store every object's data. Basically, I used Array of Objects. I created full flexed working app. A day later, I WAS REJECTED. Feedback was - I should have used Objects for cart instead of Array :( People say anything to reject. Please help if there could be a better way to store cart items.
@darshitraj1694
@darshitraj1694 2 жыл бұрын
*logic
@rotembs
@rotembs 2 жыл бұрын
@@darshitraj1694 They wanted to see something like that probably: [{productName: "MacBook", price: 50, quantity: 2}, {...}]
@mohammadyasir-ci7gf
@mohammadyasir-ci7gf Жыл бұрын
Basically interviewer wanted to store the cartItems like this. {“randomId”:{itemName:”mobile,price:10,quantity:10} where randomId is a cartItem Id, there are many ways to create randomId in js. I think interviewer was saying to use Object over array because of time complexity to remove an item from cart. If you use array the time complexity would be O(N) but if you use object the time complexity would be O(1). But wait, it doesn’t mean that Object will be always efficient, it’s totally depend upon the requirement. lets say if we want to know how many items are added in cart, or last 5 items added in cart. In these cases the array option will work better that object. Anyway I think as an interviewer its better to ask follow-up questions in these situations rather than directly rejecting the candidates. Remember we can’t make ourself 100% rejection proof, there could be any reason for rejection. Hope you must be doing great somewhere now😊
@DarshitRaj
@DarshitRaj Жыл бұрын
@@mohammadyasir-ci7gf first of all, Eid Mubarak Yasir bhai. You answer is something I was searching for sometime now. Yes, the approach with objects are better with performance centric apps, maybe, which involves frequent addition/removal. I stayed in my current company for stable work enviroment.
@munawarmunna2232
@munawarmunna2232 2 жыл бұрын
Yes please make videos on DSA with javascript..
@harshitjain3232
@harshitjain3232 2 жыл бұрын
Want you create dsa for javascript, containing interview like questions.
@SalmanKhan-lx9kp
@SalmanKhan-lx9kp 2 жыл бұрын
This video is great! You must create DSA with JS full playlist.
@abhishekvishwakarma9045
@abhishekvishwakarma9045 2 жыл бұрын
After watching LRU cache question can you create a video on generators in javascript that'll be helpfull 😀
@RoadsideCoder
@RoadsideCoder 2 жыл бұрын
Sure
@venkateshpachigulla
@venkateshpachigulla Жыл бұрын
Do you know about conic-gradient and percentage variable before interview? I saw for the first time.
@RAUSHANKUMAR-vu5hy
@RAUSHANKUMAR-vu5hy 2 жыл бұрын
Your javascript tut is very helpful for me understand easily the core concept
@rlxgroot278
@rlxgroot278 2 жыл бұрын
Great one. We want DSA series in javascript 😍
@sayurikamble825
@sayurikamble825 2 жыл бұрын
This is how I solved the Pangram Question: function checkPangram(str) { const arr = [] const sentenceArr = str.toUpperCase().split("").filter(item => item != " ") sentenceArr.map((alphabet) => { if (!arr.includes(alphabet)) { return arr.push(alphabet) } }) return arr.length === 26 ? "Pangram" : "Not Pangram" }
@Abhishek_raj_gupta
@Abhishek_raj_gupta Жыл бұрын
what is string has numbers.
@MusicalOcean
@MusicalOcean 2 жыл бұрын
Please create DSA playlist for Js
@rahulpandey8333
@rahulpandey8333 2 жыл бұрын
We all need full DSA course with javascript.
@kritisharma4653
@kritisharma4653 Жыл бұрын
case "ADD_TO_CART": return { ...state, cart: [{ ...action.payload, qty: 1 }, ...state.cart] }; What does it mean??
@Frameddelight
@Frameddelight Жыл бұрын
cart filter would return action.payload.qty, and that would be used as a filtering condition, if it matches the product id and qty is returned, the 0 qty would be treated as false thus filtering that from the array.
@rajesh-royal
@rajesh-royal 2 жыл бұрын
were you selected, what package, perks they offer - you dont have to mention the CTC, just if it was competative
@gullukumar4497
@gullukumar4497 2 жыл бұрын
Bhai CTC bata diya to blacklist kr denge
@soumitahalder2424
@soumitahalder2424 2 жыл бұрын
@@gullukumar4497 kon karegaa ?? Company ?
@simionandrei5409
@simionandrei5409 2 жыл бұрын
Nice video Piyush! I think some videos about Generators and Data Structure will be really useful! Keep up the good work!
@esmamanyt7048
@esmamanyt7048 11 ай бұрын
I have one confusion in DSA question can we allow using other language like c++ and java because this is the most common languages for dsa and i also solved the lru cache question but in js and c++ approach is very different special implementation ???
@RoadsideCoder
@RoadsideCoder 11 ай бұрын
In frontend most interviewers won't allow any other language than JS
@TechNikky
@TechNikky Жыл бұрын
23:23 if we go below 1 how the hack that item removes automatic from cart instead of changing carty quantity to 0. Please explain krdo boht confuse horha hai
@Frameddelight
@Frameddelight Жыл бұрын
cart filter would return action.payload.qty, and that would be used as a filtering condition, if it matches the product id and qty is returned, the 0 qty would be treated as false thus filtering that from the array.
@AjithKumarsham
@AjithKumarsham Жыл бұрын
Nice video, Just wanted to share a more simpler way for checking pangram function isPangram(string) { let strArr = string.toLowerCase(); let alphabet = "abcdefghijklmnopqrstuvwxyz".split(""); for (const str of strArr) { if (strArr.indexOf(alphabet[str]) < 0) { return false; } } return true; }
@jenso413
@jenso413 2 жыл бұрын
just some advice, I know the focus wasn’t supposed to be on styling, but you adding all those inline styles made the first react question very hard to look at. If you don’t want to worry about styling in the video, just create a pre made css style sheet, and add classes as you go. Would make things a lot easier to watch
@RoadsideCoder
@RoadsideCoder 2 жыл бұрын
Agreed, Thanks for the advice.
@piyushchopade7878
@piyushchopade7878 2 жыл бұрын
@@RoadsideCoder For how much work ex is this expected?
@RoadsideCoder
@RoadsideCoder 2 жыл бұрын
@@piyushchopade7878 1 year, Thie however can be asked in any experience
@shashidharvarne1059
@shashidharvarne1059 2 ай бұрын
Great video! Just one quick question.. was this for SDE 1 or SDE 2 position? Thanks in advance
@RoadsideCoder
@RoadsideCoder 2 ай бұрын
sde 1
@akrammohammed3581
@akrammohammed3581 2 жыл бұрын
We need DS with js pls do a series on that
@coder-webdev5907
@coder-webdev5907 2 жыл бұрын
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]
@ichiroutakashima4503
@ichiroutakashima4503 Жыл бұрын
I hate how you can make things so easy, yet when I'm APPLYING it myself, I blank out. I wish I could be good as you. Any tips? I've been studying for a year now and I feel like I've not done enough yet to learn the basic, I just don't feel confident at all.
@lokeshnegi5051
@lokeshnegi5051 2 жыл бұрын
so were you hired after smashing the interview or not ?
@punitdixit861
@punitdixit861 2 жыл бұрын
Hi Thanks for creating such good coding video. Please create DS/Algorithm in JavaScript
@CodeWithAhsan
@CodeWithAhsan 2 жыл бұрын
If you're looking for visual examples for DS with JS, you can check the following, until he uploads one :) Playlist: kzbin.info/aero/PL2sQdFoGnLIgTJ4hP3ab4HoPOe4BT4ose Demo : ahsanayaz.github.io/fun-with-javascript/ Sorry for replying to multiple comments :) I feel like the playlist can benefit a lot of folks here.
@lebnew8218
@lebnew8218 2 жыл бұрын
Why I found this interview so hard !! 🥲🥲🥲
@ssmohanty153
@ssmohanty153 2 жыл бұрын
Thank you so much for this interview Q&A series, helps so much. If possible please make a DSA series using java script
@user121304
@user121304 Жыл бұрын
After doing such good coding interview, that called u for second round??? They could have hired you right away 😅
@banglanews1368
@banglanews1368 2 жыл бұрын
hii.. bro, i want to create inshort like news app from you.. please tell me how much money you want ? bro my budget is too low..
@ashishverma1382
@ashishverma1382 Жыл бұрын
great video
@ramkrushnaprabhu8027
@ramkrushnaprabhu8027 2 жыл бұрын
Sir please create tutorial on Ecommerce website creation by using MERN technology
@rakaa31
@rakaa31 2 жыл бұрын
please create DSA with js series
@rohitdesai3615
@rohitdesai3615 2 жыл бұрын
Bhai mai mechanical se huun. Aur abhi start kiya huun web development What you think Please give any tips
@TopTalentBridge
@TopTalentBridge 2 жыл бұрын
Definitely want to have a talk with you. I will book a call with on topmate in next 2 weeks for sure.
@munawarmunna2232
@munawarmunna2232 2 жыл бұрын
Bro make videos on Mostly asked DSA interview questions..
@noaakshay
@noaakshay 7 ай бұрын
27:24 in one line 'abcdefghijklmnopqrstuvwxyz'.split('').every(x=>str.indexOf(x) !== -1)
@ChhikaraBRUH
@ChhikaraBRUH 2 жыл бұрын
please create a DSA in JS series
@pranavpatil8351
@pranavpatil8351 2 жыл бұрын
Plz Do make a playlist on Data structures n alorithyms with JavaScript
@veereshkumar640
@veereshkumar640 Жыл бұрын
it is very usefull video can you please create DSA with JS
@gopisrinivas4485
@gopisrinivas4485 2 жыл бұрын
WNice tutorialch version do you use to get all the setup and polyphonic softs?
@successmotivationpoint4925
@successmotivationpoint4925 2 жыл бұрын
Was this interview for fresher or experience bcz level of question i think is not for freshers ?
@ravikumar7676
@ravikumar7676 2 жыл бұрын
Yes DSA series .. i m having so much problem in DSA part .
@cb559
@cb559 2 жыл бұрын
Data structures with Js is must needed in KZbin but it's must a detailed one with all cases of data structures covered
@shivanshusingh4877
@shivanshusingh4877 Жыл бұрын
DSA with Javascript
@mohininarwade1108
@mohininarwade1108 Жыл бұрын
Also how do you copy paste so fast? whats the shorcut control? please tell
@madetolaugh3476
@madetolaugh3476 2 жыл бұрын
Waise Kitna Time lagega React Js sikhne mein.....ki interviewer koi problem de or hum solve kar le ? Aapne kaha se sikha tha javascript and react js ? Plzz reply
@shridharshikalgar9641
@shridharshikalgar9641 2 жыл бұрын
Fresher ko etna nhi puchte hey Bhai core aur advanced concept pey questions puche jaate hey, concepts clear hona chahiye, face to face interview mey questions puche jaate hey bass
@RapidReels4Youu
@RapidReels4Youu Жыл бұрын
Need more videos like this thanks for sharing keep it up brother
@jhaganb9215
@jhaganb9215 Жыл бұрын
Hi bro, love your content and the vibe of the video so wanna ask you a question that is is there a internship which is only for frontend developer and how can i apply for it. Looking for you reply
@randomsVlogs871
@randomsVlogs871 2 жыл бұрын
Love you from Pakistan 🇵🇰❤️
@husler7424
@husler7424 2 жыл бұрын
Did you get selected or not? (for me I guess you should be selected)
@ashishmadan5700
@ashishmadan5700 2 жыл бұрын
Amazing video very helpful, Please create DSA series in javascript 🔥🔥
@0Ipsita0
@0Ipsita0 Жыл бұрын
Yes, create separate DSA video playlist.
@RoadsideCoder
@RoadsideCoder Жыл бұрын
Already did, check my channel
@RichaKejriwal
@RichaKejriwal 9 ай бұрын
This was for which position? SDE2 or SSE?
@RoadsideCoder
@RoadsideCoder 9 ай бұрын
SDE1
@indianinvestor1301
@indianinvestor1301 2 жыл бұрын
Bro, im preparing fronrend interview need ur guidness ❤
@RoadsideCoder
@RoadsideCoder 2 жыл бұрын
Hey, you can book a call with me here - topmate.io/roadsidecoder
@RAUSHANKUMAR-vu5hy
@RAUSHANKUMAR-vu5hy 2 жыл бұрын
Please make more video fronted developer related
@RoadsideCoder
@RoadsideCoder 2 жыл бұрын
For sure. If this one does good I'll make more!
@s1k_guy
@s1k_guy 2 жыл бұрын
Bro. Make vedios on javascript data structure please
@damon4907
@damon4907 2 жыл бұрын
Yes we want dsa with js
@kishoreramesh8110
@kishoreramesh8110 2 жыл бұрын
Tazorpay? Or razorpay
@premsolanki7570
@premsolanki7570 2 жыл бұрын
We need a series of DSA Please do it sir !!!
@romiljain7595
@romiljain7595 2 жыл бұрын
waiting for series DSA + JS questions and what can be the level of questions interviewer can ask
@sreekanthps5344
@sreekanthps5344 2 жыл бұрын
bro please make dsa with javascript
@aakashjyoti4580
@aakashjyoti4580 2 жыл бұрын
bro your videos really help me in my interviews too.. thnakyou..
@rakaa31
@rakaa31 2 жыл бұрын
hey, so i been learning react for quit a while, i can make e-commerce, twitter like websites in react and know JS well so can i start to give interviews?? for frontend roles??
@haniahani5351
@haniahani5351 8 ай бұрын
Yes you can
@reethikavanaparthy6984
@reethikavanaparthy6984 2 жыл бұрын
please can u suggest a good resume builder
@rajeshprasadh3717
@rajeshprasadh3717 2 жыл бұрын
suuuper helpful video, thanks man!
@narendra3385
@narendra3385 2 жыл бұрын
How Much Level Of Experience to get these all Questions ?? . Really, Huge Subject and It's cover all the Important Concepts in JavaScript and React.js
@RoadsideCoder
@RoadsideCoder 2 жыл бұрын
It was for a junior role
@narendra3385
@narendra3385 2 жыл бұрын
@@RoadsideCoder Thankyou
@abhishekvishwakarma9045
@abhishekvishwakarma9045 2 жыл бұрын
Awesome walkthrough of interview experience😎🔥
@vishalmane3139
@vishalmane3139 Жыл бұрын
hVe u failed any interview 😂
@ιυ_αα-ξ5σ
@ιυ_αα-ξ5σ 2 жыл бұрын
Super great video makes excited to learn more and get started! Love the "stay organized" motto !!
@extux9090
@extux9090 Жыл бұрын
Yes please do it DSA+JS
@ANONYMOUS-wx5kc
@ANONYMOUS-wx5kc 2 жыл бұрын
Pls make a video on dsa with js
@mohininarwade1108
@mohininarwade1108 Жыл бұрын
don’t you have any React JS course created by you?
@atharshakeel7277
@atharshakeel7277 Жыл бұрын
Loved the video Piyush. And yes, we require a DSA with JS tutorial playlist.
@adityanimgade2200
@adityanimgade2200 2 жыл бұрын
you can do what you want!
@MrK-nb7xr
@MrK-nb7xr 2 жыл бұрын
Kitna offer kiya .. 40LPA ..?
@rachit55555
@rachit55555 2 жыл бұрын
RazorPay FEIII is 55LPA.
@jahirhassan449
@jahirhassan449 2 жыл бұрын
create a series of dsa with js
@purutopeta3099
@purutopeta3099 2 жыл бұрын
portfolio website down?
@varuns3763
@varuns3763 2 жыл бұрын
Yes we need data with java
@nasarshaik5207
@nasarshaik5207 2 жыл бұрын
yes, please make playlist for these type of DS and Algo
@rahulmore6810
@rahulmore6810 2 жыл бұрын
DSA with JavaScript 🙌
@shacodes
@shacodes 2 жыл бұрын
Switch kr va ke hi manoge sir
@sachinporwal4275
@sachinporwal4275 2 жыл бұрын
please make a DSA series using Js
@soumyaranjanpanda7532
@soumyaranjanpanda7532 2 жыл бұрын
please create a DSA videos. That would be really helpful
@CodeWithAhsan
@CodeWithAhsan 2 жыл бұрын
You can probably get started with this. Until he uploads a series. Playlist: kzbin.info/aero/PL2sQdFoGnLIgTJ4hP3ab4HoPOe4BT4ose Demo : ahsanayaz.github.io/fun-with-javascript/
@vikulkumar3376
@vikulkumar3376 2 жыл бұрын
It will be great if you are creating a one series of DS with JS.
@ganeshkhirwadkar4127
@ganeshkhirwadkar4127 2 жыл бұрын
Bahut hi sahi bhai ! Will help many of us definitely
@tabrezrahi
@tabrezrahi 2 жыл бұрын
Please create a Series of DSA
@CodeWithAhsan
@CodeWithAhsan 2 жыл бұрын
Playlist: kzbin.info/aero/PL2sQdFoGnLIgTJ4hP3ab4HoPOe4BT4ose Demo : ahsanayaz.github.io/fun-with-javascript/ If you're looking for visual examples for DS with JS, you can check the following, until Piyush uploads one :)
@sojuthomas7727
@sojuthomas7727 2 жыл бұрын
Thank you so much 😊
@santhoshburgula6952
@santhoshburgula6952 2 жыл бұрын
Bro, I have gone through some videos, you are simply rocking and just you inspired me a lot. what should I do to pro in javascript like you ? is there any best book for javascript and as well as practice problems? please refer to any suggestions and root map. by the by, I'm from Non-IT background.
@RoadsideCoder
@RoadsideCoder 2 жыл бұрын
Hi Santosh, Thanks a lot for appreciation ❤️ Let's connect on instagram @RoadsideCoder. You can ask me your questions there.
@santhoshburgula6952
@santhoshburgula6952 2 жыл бұрын
@@RoadsideCoder Sorry, I don't have Instagram.
Every parent is like this ❤️💚💚💜💙
00:10
Like Asiya
Рет қаралды 18 МЛН
Life hack 😂 Watermelon magic box! #shorts by Leisi Crazy
00:17
Leisi Crazy
Рет қаралды 25 МЛН
Running With Bigger And Bigger Lunchlys
00:18
MrBeast
Рет қаралды 120 МЛН
小路飞嫁祸姐姐搞破坏 #路飞#海贼王
00:45
路飞与唐舞桐
Рет қаралды 9 МЛН
Top 50 Most Asked JavaScript Logical Interview Questions || Must Watch🤯😱
1:09:02
Beginner React.js Coding Interview (ft. Clément Mihailescu)
36:31
Ben Awad
Рет қаралды 2,1 МЛН
[ Live ] React JS Interview 🤯 | Frontend UI Questions 🤒
1:12:35
Akshay Saini
Рет қаралды 355 М.
2.5 Years Experienced Best React Interview
1:39:25
ProCodrr
Рет қаралды 13 М.
Every parent is like this ❤️💚💚💜💙
00:10
Like Asiya
Рет қаралды 18 МЛН