How do you feel about tasks with very tight deadlines? Have you often faced them?
Frontend
You mentioned UI-kit. What component was the most complex or interesting to implement, and which posed the biggest challenge?
Have you ever worked with Docker?
What do you expect from a new workplace?
Tell more about the technical details of the project: architecture, decisions made, technologies used.
Have you tested anything on the frontend?
const items = [10, '10', 12, 15, 21, 12, 10, 16, 21, 15, 'apple', 'apple']; function createUniqueArray(values) { return values; }
Have you ever set up build tools (webpack, vite, etc.) yourself?
const goods = [ {name: 'iphone', price: 200, status: 'inStock'}, {name: 'samsung', price: 100, status: 'outOfStock'}, {name: 'xiaomi', price: 300, status: 'readyToBuy'}, ]; function filterGoods(values) { return values; }
Do you read anything about frontend — books, podcasts, channels?
Why are you currently looking for a job?
/** * What will be printed to the console and why */ const a = () => console.log('a'); const b = () => setTimeout(() => console.log('b'), 0); const c = () => Promise.resolve().then(() => console.log('c')); a(); b(); c();
How do you evaluate your own grade?
Have you worked with Legacy code?
What does technical support of the project involve?
Do you have a favorite type of task on the frontend? Or conversely, what type of task do you dislike?
Tell me more about the project you worked on. Was it a project you did and forgot, or was there support?
Tell us about yourself, your experience, and why you chose frontend development.
Describe your average workday during the best times of the project. Who were the team members and what were their roles?
Explain the attributes async and defer in the script tag. What are they and what is the difference?