Front End Software Engineer Interview Questions

807 front end software engineer interview questions shared by candidates

- In the code review interview, questions about JavaScript and React are based on the refactored project just to ensure your knowledge and deep knowledge of the language, libraries, and frameworks. - In the System Design interview, questions about the proposed solutions like data model relationship, requirements, API, and possible requests.
avatar

Front End Software Engineer

Interviewed at Collective

3.9
Oct 19, 2022

- In the code review interview, questions about JavaScript and React are based on the refactored project just to ensure your knowledge and deep knowledge of the language, libraries, and frameworks. - In the System Design interview, questions about the proposed solutions like data model relationship, requirements, API, and possible requests.

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
avatar

Senior Software Engineer Front End

Interviewed at Walmart

3.4
Oct 12, 2018

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

Viewing 261 - 270 interview questions

See Interview Questions for Similar Jobs

Glassdoor has 807 interview questions and reports from Front end software engineer interviews. Prepare for your interview. Get hired. Love your job.