Sobes.tech

What is the difference between __proto__, [[Prototype]], and prototype?

Middle+
РунитиРунити
26

If the task is unfamiliar and time is limited (for example, a week), how do you act?

Middle+
Ifellow
26

What database was used in the project?

Middle
Куаргет
26

What do you know about REST? What request methods are available?

Middle+
Лига Цифровой ЭкономикиЛига Цифровой Экономики
26

How will the asymptotic complexity and memory consumption change in the task camelCase → snake_case if the result is collected by concatenating strings instead of an array of characters?

Middle+
Яндекс
26

What cookie attributes do you remember?

Middle
WB банк
26

How do you build the process of learning new technologies?

Middle
Лига Цифровой ЭкономикиЛига Цифровой Экономики
26

Tell us about the new features introduced in the ES6 (ES2015) standard in JavaScript.

Middle
Ай-Теко (I-Teco)
26

What interesting cases or non-standard situations have you encountered while working with Playwright?

Middle
ИдаПроджект
26

What is the difference between the double equals operator (==) and the triple equals operator (===)?

Middle
нейровэд
26

There is a React component with a counter (useState), a button that increments the counter by 1, and a list of 100 items. What happens when the button is clicked?

Middle+
Global treds
26

Tell about your education. How did you come into the IT field?

Middle+
Dr. web
26

What would be a compelling argument for you in choosing a particular company or project?

Middle
нейровэд
26

Tell us how well you understand what the company is, what product it offers, and what you will be doing?

Middle
Куаргет
26

What AI tools and assistants do you use in your work and how?

Middle+
Сбер. IT
26

// It is necessary to check the solution to the problem on two services by calling: // 1. checkResult(url1, solution) // 2. checkResult(url2, solution) // // checkResult: (url: string, solution: string | number) => Promise<boolean>; // // - If both requests return true - log success // - If at least one returns false - log fail // - If at least one does not respond - log error // - If at least one responds longer than 1 sec - log timeout

Middle
Яндекс МаркетЯндекс Маркет
26

[name] asked: Can you tell me about the stack you worked on? Specifically, tell me more about Next.js.

Middle+
WB банк
26

import { useState, useRef, useEffect } from "react"; const useDebugRender = ({props}) => { const prevProp = useRef(props) useEffect(() => { }, []) } const ParentComponent = () => { const [random, setRandom] = useState(0); // Passes to child component as a Prop const [text, setText] = useState(""); // Passes to child component as a Prop const createRandom = () => setRandom(Math.floor(Math.random() * 100)); const onTextChange = (e) => setText(e.target.value); const [count, setCount] = useState(0); const incrementCount = () => setCount((prev) => prev + 1); // This function is passed as a prop to the child component return ( <> <Count: {count} /> <input type="text" onChange={onTextChange} /> <button onClick={createRandom}>Generate Random</button> <div> <ChildComponent random={random} text={text} incrementCount={incrementCount} /> </div> </> ); }; export default ParentComponent;

Middle+
IT OneIT One
26

Tell about HTTP protocols and methods used.

Middle
АО Пари Страховая компания
26

If you consider optimization in terms of a Vue component, what would you pay attention to and what tools would you use?

Middle
Marfatech
26
/286