Those who want to give mock interview can mail on 𝐩𝐫𝐚𝐜𝐭𝐢𝐜𝐞𝐦𝐨𝐜𝐤𝐬𝟐𝟐𝟑@𝐠𝐦𝐚𝐢𝐥.𝐜𝐨𝐦 I have given around 100+ interviews(30+ uploaded of mine) and accordingly your interview will be taken. 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.
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.
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)
Those who want to give mock interview can mail on 𝐩𝐫𝐚𝐜𝐭𝐢𝐜𝐞𝐦𝐨𝐜𝐤𝐬𝟐𝟐𝟑@𝐠𝐦𝐚𝐢𝐥.𝐜𝐨𝐦
I have given around 100+ interviews(30+ uploaded of mine) and accordingly your interview will be taken.
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...
Please upload videos regarding mangerial round or cto round … or project based questions how you handle that
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.
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.
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)
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
for how much yrs of exp was this interview and u got selected?
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.
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
👍👍