What will the program output when calling the chain of functions?
Frontend
What will the two console.log outputs in the example with objects a, b, and c, used as object keys?
When will the useEffect in the given example run once, and when will the cleanup be executed?
In which cases should || be used, and in which — ???
What recent ECMAScript features, methods, or APIs have you used?
Which command should be used to install dependencies when package-lock.json is present and should this file be committed?
What irritated you the most during code review? What did you most often argue about in pull requests?
How to get an equivalent of Promise.resolve(1) without calling the Promise class?
What is SemVer?
Why do React component re-renders occur when working with Redux and how does the component learn about state changes?
Have you had experience working with private NPM packages? Tell us about it.
What would be roughly in the declaration file for such a library?
Why are objects used as keys of a regular object converted to the string "[object Object]"? Does string conversion happen for other keys, like numbers 7?
What dependencies other than dependencies are there in package.json and what do they mean?
How to make the value of a property of an object declared with const appear as 1 in the console after change?
Have you ever used Object.freeze in practice and for what purpose?
How to type a connected JavaScript library if you do not have access to its source code?
Was your idea rewarded or implemented? Did you follow its further fate?
Why is the React hook useCallback needed?
Have you ever encountered currying in practice?