Sobes.tech

How do you feel about tasks with very tight deadlines? Have you often faced them?

259

You mentioned UI-kit. What component was the most complex or interesting to implement, and which posed the biggest challenge?

194

Tell more about the technical details of the project: architecture, decisions made, technologies used.

160

const items = [10, '10', 12, 15, 21, 12, 10, 16, 21, 15, 'apple', 'apple']; function createUniqueArray(values) { return values; }

154

Have you ever set up build tools (webpack, vite, etc.) yourself?

153

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; }

152

Do you read anything about frontend — books, podcasts, channels?

148

/** * 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();

146

What does technical support of the project involve?

140

Do you have a favorite type of task on the frontend? Or conversely, what type of task do you dislike?

139

Tell me more about the project you worked on. Was it a project you did and forgot, or was there support?

126

Tell us about yourself, your experience, and why you chose frontend development.

123

Describe your average workday during the best times of the project. Who were the team members and what were their roles?

103

Explain the attributes async and defer in the script tag. What are they and what is the difference?

92