Sobes.tech

How is CRUD implemented?

Junior
239

Tell me about using Angular Signals and RxJS in a project — where did you apply what?

Middle
Protech
239

What ways of creating functions do you know?

Junior
239

How can you specify an HTTP header using a meta tag?

Junior
239

Name design patterns related to structural.

Middle
239

What page optimization methods do you know?

Middle
239

What problem does asynchrony solve in JavaScript?

Junior
239

Tell about the map and set methods in JavaScript.

Junior
239

Where does the function context come from in JavaScript?

Middle
239

From these tickets, a single, continuous route can be constructed. There are no loops or repetitions in the route. You need to write a program that returns these same ticket objects in the order of the route. ```javascript function getRoute(tickets = []) { const cities = new Map(); for (const ticket of tickets) { cities.set(ticket.from, ticket); } const result = []; let currentCity = startcity; while (cities.has(currentCity)) { const next = cities.get(currentCity); result.push(next); currentCity = next.to; } return result; } console.clear() console.log(getRoute([ { from: 'London', to: 'Moscow' }, { from: 'NY', to: 'London' }, { from: 'Moscow', to: 'Spb' }, ])); ```

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

What operators exist in JavaScript?

Intern
239

List at least five lowercase elements you are familiar with.

Intern
239

What design pattern classifications do you know?

Middle
239

What is the purpose of the rel attribute in the link tag?

Junior
239

What is HTTPS?

Junior
239

What should an ideal approach to development through testing (TDD) look like?

Middle+
239

What is Shadow DOM?

Middle
239

What methods can be used to hide an HTML element on a webpage?

Junior
239

What is the most important feature of the Promise object in JavaScript?

Junior
239

Describe the operation of several network protocols at a high level.

Middle
239
/312