Tip 1 : Focus on System Design apart from DSA
Tip 2 : Practice previous interview questions from LeetCode and CodeStudio
Tip 3 : Practice CS subjects like DBMS and OOPS
Tip 1 : Have a shot and to a point resume one page is more than enough for 0-3 years of experience
What are maps in Javascript?
What are polyfills?
Write the Ployfill for Map function
Tip 1:Do practice JS and CSS
How to center a div?
What is the CSS box model?



Conditions for valid parentheses:
1. All open brackets must be closed by the closing brackets.
2. Open brackets must be closed in the correct order.
()()()() is a valid parentheses.
)()()( is not a valid parentheses.
So I discussed an approach to solve this problem with the interviewer I gave an approach with time complexity with O(n2) solution then the interviewer told me can I improve its time-complexity then I gave a solution using stack which was of time-complexity O(n) then interviewer told me to code it after coding it he ran 4 test-cases around it and all got passed and he was happy with the solution
Explain deep clone polyfill
I was asked how would you build a site like quora what all things would you use?
It was an HLD problem I didn't have to code anything I went with my approach how would I build this what caching technique I'll use what language I'll use and why I use particular technology so questions were around that
Basic HR questions were asked
Why do you wanna join us?
Where do you stay?
How was your interview experience with us?
Tip 1: Be honest and confidant

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?