I applied through a recruiter. The process took 1 day. I interviewed at Walmart (Bengaluru) in Oct 2018
Interview
Got a call from the HR and asked for F2F interview on weekdays. There were two rounds and mostly fundamental questions were asked. The interviewers were nice people, just that couple of times their concepts were not very clear. After the rounds they took me for the lunch and after lunch, they said next 2 rounds will be next week as the interviewers were on leave. Before leaving the HR said my level was far below the desired level, so I can leave for the day :)
Interview questions [12]
Question 1
How to position the div - horizontally and vertically aligned with css
var a = {a: 1}
var b = Object.create(a)
console.log(a) and console.log(b)
a.a = 2
console.log(b.a)
The interviewer got confused and said that the prototype is copied to b and if we change a.a it will not have any impact on b.a. But rather b's __proto__ will have a link to a and if we change or delete a.a it will be reflected in b