πππππππ πππ―ππ₯π¨π©ππ« ππ§πππ«π―π’ππ° ππ¨-ππ|π π«π¨π§π ππ§π ππ§πππ«π―π’ππ°| ππ¨π πππππππππ
HTML-ΠΊΠΎΠ΄
- ΠΠΏΡΠ±Π»ΠΈΠΊΠΎΠ²Π°Π½ΠΎ: 19 ΡΠ½Π² 2025
Those who want to give mock interview[π πππ ππ ππππ] can mail on π©π«ππππ’πππ¦π¨ππ€π¬πππ@π π¦ππ’π₯.ππ¨π¦.
I have around 2.5 years of experience in Frontend development and given around 100+ interviews.
I know what it takes to crack the interview and I will be able to guide you accordingly as per the industry standards.
After your interview,feedback will be given to you personally in the way you can give better interviews in the near future.[π πππ ππ ππππ]
Feedback includes:
1.Your doubts
2.Which are the resources that can help you to grow?
3.What are the things or the skills reqiured you to give an edge above other candidates for job selection?
4.Where you can apply for jobs,etc and many more...
That was really helpful! But it'll be much more helpful if you could share your resume, atleast the format that it has! Because resume plays a major role in getting interviews now a days.
Hi,
The vital thing due to which the resume do get selected is due to projects. Mainly, if you have worked on e-commerce domain that would be a great plus.
I have done projects related to E-commerce, PWA and healthcare domain.
@@reactjsdeveloperinterview Thank you!
β@@keerthanas6713please share all interview questions so we can also crack easily like you
@@thrinadhvenkata2315 I haven't got any interview so far dude. I'm not receiving any interview calls.
Please upload videos regarding mangerial round or cto round β¦ or project based questions how you handle that
For first program you can use a function that return
return arr[0].chatAt(1)===arr[1].charAt(0)
I think it will not work - charAt will check just a character (only one letter) but we have to check two words. For example, arr[0] is 'Hello' and arr[1] is 'ello', then it will return 'true', if something else, it will return 'false'. No need to use if and else for returning just true or false. For example, just write 'return arr[0]===arr[1]'. Thats it. If both are equal or same, it will return true otherwise false.
Hi Bro , Can you please tell if you are getting the calls through referrals or direct apply.π
Hello bro, I applied directly for this interview. I do have applied for other companies through referrals as well.
Bro are u applying from some sites or what's the process of applying
var a = ["boy","oy"];
function verify(arr) {
let a = arr[0];
let b =[...arr[1]];
for(let item of b) {
if(!a.includes(item)) {
return false
}
}
return true
}
verify(a)
time complexity can be improved using extra space
for how much yrs of exp was this interview and u got selected?
just compare the length of 1st and 2nd element and return
All these 34 interviews are yours?
a.includes(a[a.length-1]) this will work
if order of letters change, it won't work
Please help when I run react app so it's not add html and css . It's terminal shows 254 package funding
Use vite
Or parcel.js
@@compilejs110 npx or npm also will work. vite will just a new approach to create the react app faster. vite is not a solution I guess.
When are you getting the error? After creating the app or did some changes, you are getting the error.
ππ
function checkFq([og,tar]){
og = og.toLowerCase();
tar = tar.toLowerCase();
let obj = {}
for(let el of og){
obj[el] = 1;
}
for(let el of tar){
if(!obj[el]){
return false;
}
return true;
}
}