I applied online. The process took 5 days. I interviewed at Wayfair (Boston, MA) in Sept 2016
Interview
First I received a call from internal recruiter. She was very nice all the time and asked questions about my resume. She also asked some basic questions about Javascript (module pattern, what is the DOM). Second was a coding interview with a Javascript Architect. He first asked me some questions about my experience in some more detail (technologies I used, workflow in my last job, etc.). After that he made me do some basic exercise in a shared screen.
Interview questions [1]
Question 1
Build a Cart object using javascript with these three methods:
chart.add('chair', 3);
chart.add('chair'); //will add only 1 element
chart.add('table', 2);
chart.remove('table') // it will remove 1 element each time.
chart.show(); // will show the elements and its quantity ordered by name
// chair: 4,
// table: 1