Tip 1 : Do practice a lot of basic javascript concepts & solve as many questions as you can.
Tip 2 : prepare for projects mentioned in your resume and skills which you have mentioned.
Tip 3 : I build 2 major projects on mean stack as a intern from grras solution pvt Ltd. First is real estate project and second is blood bank.
Tip 1 : Keep it short and simple. Go through it properly before the interview. Make sure that you haven't put anything in it that can cause you problems during the interview. Prepare all the things before interview that you have mention in your resume.
They asked me about methods of array used in javascript. Oops concepts, new features of javascript, sementic elements in html5, & how html5 different from html, about css3 features flexbox.
It was in the day time about 11am. It was mostly focused on my problem solving skills & the way how I solved the problems as well as algorithms fundamentals. I was asked 2 questions based on Data Structures and Algorithms.
Algorithms about how to find an hidden element from the array. & how many ways by which you can use sorting on an array.



Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
It was in the day time about 10 am. It was mostly focused on javascript framework which is angular & they asked me about angular fundamentals. I was asked 8-10 questions based on angular.
About angular versioning, features, observables, promises, features module, directives, routing, dependency injection



a) Duplicate elements may be present.
b) If no such element is present return -1.
Input: Given a sequence of five numbers 2, 4, 5, 6, 8.
Output: 6
Explanation:
In the given sequence of numbers, number 8 is the largest element, followed by number 6 which is the second-largest element. Hence we return number 6 which is the second-largest element in the sequence.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?