An exercise to see if you really know JavaScript
Software Engineer Front End Interview Questions
852 software engineer front end interview questions shared by candidates
Out of the 42 multiple choice questions, I could probably count on one hand the ones that I felt were relevant to me as a front end engineer. There were many questions in C and Java on topics I haven't thought about since college, and additionally there were questions in Ruby and Python that I just couldn't answer because I don't know those languages. Other questions involved scenarios that on a job, I would ask either my dev ops person or a back end person.
How to do the inheritance
Study string/array manipulation and brush up on your JS/CSS/HTML
How would you implement and optimize a radar chart data visualization in a web application?
The coding exercise consisted of creating a JavaScript class called Model that would expose the following methods: get, set, has, on, trigger. The class signature would be something like the following: const Woof = new Model({id:133, type: 'dog', name:'Spot' }); The has method would take a property name and check if the model has that particular property, return true or false. The get method would take a property name and return it's value if it exists. Return null if not. The set method would take a property name and a value and set that property's value if the property exists. The on method would allow for the addition of an event to the class and a callback function. The trigger method would allow the "triggering" of a particular event and pass any number of parameters to the callback function. You can use ES5 or ES6 syntax.
System design question
- Javascript focused, promises - Browser Coding, think in components and testability - System Design, wireframe, which tech to use and why, API and requests/responses design - Behavioral interviews, come prepared with stories that show the values of Atlassian. One general and one more focused on the technical side of dev.
- 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.
Viewing 251 - 260 interview questions