Sobes.tech

What language and technologies did you work with in backend development?

Junior
137

[имя] спросил: What types of tests have you written in Angular applications?

137

What should be done in the chain of custom Promises to make execution go to catch?

Middle+
137

Experience working with micro frontends?

137

For a code fragment with synchronous code, setTimeout, and Promise, determine the order of output in the console, explaining the macro- and microtask queues.

Middle+
136

Have you worked with devDependencies, peerDependencies, optionalDependencies or bundledDependencies?

Middle+
136

Live coding: implement a function $ (similar to jQuery), which takes a valid CSS selector and finds nodes accordingly. The function should return an object with methods addClass, toggleClass, removeClass, css (apply styles), html (insert HTML/CSS inside the element) — with chaining capability. The provided test code with chaining should not be changed and must work after implementing the function.

136

How to organize through a service scenarios where two components need to read the same value or have shared state?

136

What is the difference between a regular script, a script with async, and a script with defer? If there are multiple script tags on a page, in what order will they load and execute?

Middle+
136

```javascript const obj = { name: 'Alex', say() { console.info(this.name); } }; const obj2 = { name: 'Ivan' } const fn = obj.say.bind(obj).bind(obj2); fn(); obj.say(); ```

Middle
136

What problems can arise during the hydration of an SSR application, for what reasons, and how would you solve them?

Middle
135

Please tell us about yourself, your experience at your last job, the main specifics, the tech stack — everything you think is necessary to share.

Middle+
135

[name] asked: Was the architect generally responsible for the frontend architecture, or was there a separate person responsible for it on the frontend?

135

// input parameters: // url // options export function useFetch() { // logic const fetchData = async () => {}; return { data, error, loading }; }

Middle+
135
/350