Fullstack JavaScript Developer applicants have rated the interview process at Wix with 3 out of 5 (where 5 is the highest level of difficulty) and assessed their interview experience as 100% positive. To compare, the company-average is 50% positive. This is according to Glassdoor user ratings.
Common stages of the interview process at Wix as a Fullstack JavaScript Developer according to 1 Glassdoor interviews include:
Phone interview: 100%
Here are the most commonly searched roles for interview reports -
I applied through an employee referral. I interviewed at Wix (Tel Aviv-Yafo) in Jan 2021
Interview
first phone call with the team manager about the position.
Second zoom interview with coding questions.
Third a home assignment.
Then a zoom interview with a design question.
The last interview is with HR.
Interview questions [2]
Question 1
You are given a Maze in the size of NxM represented by a boolean matrix where 0 is empty, and 1 is blocked (wall).
1. Code a function 'solve1', which returns true if there's a path from points 's' (start) to 'e' (end) which passes only through zeros. It should return 'false' if there is no possible path.
Possible movements: up, right, down, left (no diagonals)
For example, this maze should return true:
s 1 1 1
0 0 0 1
1 1 e 1
1 1 1 1
And this one should return false:
s 1 1 1
0 1 0 1
1 1 e 1
1 1 1 1