In Vue task: what will be displayed in the template when using watch without the immediate flag?
Frontend
What props did you make for components in the design system? Did you lay down props for the future or only what is needed now?
Live coding task: develop a cloud cost calculator in Vue 3 with TypeScript. Load tariffs from API, select service (compute/storage), select tariff, period (hourly/daily), quantity, calculate total cost.
What difficulties arise when working with micro-frontend architecture and Module Federation in your project?
async function f(result = 1) { let promiseB = new Promise(resolve => { setTimeout(() => resolve("1e"), 200) }); let promiseA = new Promise(resolve => { setTimeout(() => resolve("ab"), 1000) }); result += await promiseA; result += await promiseB; alert(result); // ? } f(null);
What is the purpose of watchEffect? How does it differ from watch?
How much time do you need to complete the transition from your previous job?
Tell me, why did you decide to write and talk to us again?
FIFO and LIFO: what are they, how does the Call Stack work, and what are microtask and macrotask queues?