Which of the following is true about prototype inheritance in JavaScript?
Senior Full Stack Engineer Interview Questions
829 senior full stack engineer interview questions shared by candidates
Task In this challenge, you'll build on provided Mongoose models to create an API for a record store e-commerce application. You'll be adding a variety of routes for both albums and purchases. Albums Add routes for these five CRUD actions pertaining to the - Get a list of all albums in the dabatase - Return a single album record by id - Create a single album from the parameters passed in PUT /albums/:id DELETE /albums/: id - Delete an existing album by id Requests The POST and PUT routes should expect JSON values in the request body which will contain the values necessary for creating and saving a record. All three Album Album model: . GET /albums GET /albums/:id POST /albums - Update an existing album record by id....
What is the output of the following code snippet? `const promise1 = new Promise((resolve, reject) => { setTimeout(() => { resolve('Promise 1'); }, 1000); }); const promise2 = new Promise((resolve, reject) => { setTimeout(() => { reject('Promise 2 Error'); }, 500); }); Promise.race([promise1, promise2]).then((result) => { console.log(result); }).catch((error) => { console.log(error); });`
Technical discussion on resume and coding on a problem defined by the interviewer. Leetcode easy to medium questions.
what is the name of the principle this code violates?
here's some code, imagine you were doing a code review, what would you say?
What are the most important things for you when it comes to being happy in the context of your next role?
what was the last time you has to make a critical decision quickly?
Describe [specific technology] for me.
How would other employees describe your work style and ethics?
Viewing 511 - 520 interview questions