Tip 1 : DSA is asked in depth. So prepare it alike
Tip 2 : Good to know JavaScript core concepts like closure
Tip 3 : Practice from online coding platforms
Tip 1 : Should have javascript and if possible know both the backend and frontend (eg angular, node)
Tip 2 : Do not put false things on your resume
A coding question and some basic JS concepts were asked
Verbally gave defination and explained the advantages



INPUT : ARR [ ] = [ 1 , 2 , 3 , 4 , 5 ] , N = 4
OUTPUT: ARR [ ] = [ 1 , 2 , 4, 5 ]
The above example contains an odd number of elements, hence the middle element is clearly the (N+1) / 2th element, which is removed from the stack in the output.
INPUT : ARR [ ] = [ 5, 6, 7, 8 ] , N = 3
OUTPUT: ARR [ ] = [ 5, 7, 8 ]
The above example contains an even number of elements, so out of the two middle elements, we consider the one which occurs first. Hence, the middle element would be ((N+1) / 2 - 1) element, which is 6 and is removed from the stack in the output.
It was just a normal HR Round. Interviewer was very polite and helping.
Tip 1 : Know about your project in depth
Tip 2 : Quantity doesn't matter have one good project but knows everything about it
Tip 3 : Try to make your project scalable and being the main coder in your team helped me a lot

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?