JS. Reject vs throw and catch vs rejectHandler

Both, reject and throw can be handled with catch

reject inside promise will be handled by 2-d argument of then, and if it is

Читать на сайте автора.

Что означает поле SizeOfImage в структуре MODULEINFO?

Это перевод What does the SizeOfImage mean in the MODULEINFO structure? Автор: Реймонд Чен.

У одного клиента была программа с поддержкой плагинов, и клиент хотел провести

Читать на сайте автора.

Что означает поле SizeOfImage в структуре MODULEINFO?

Это перевод What does the SizeOfImage mean in the MODULEINFO structure? Автор: Реймонд Чен.

У одного клиента была программа с поддержкой плагинов, и клиент хотел провести

Читать на сайте автора.

Запуск Delphi и C++Builder без Welcome Page

    Страница приветствия в Delphi и C++Builder 11 Alexandria стала более удобной. Но все равно ее наличие при загрузке IDE нравится не всем программистам. Есть, как

Читать на сайте автора.

Новый лидер TIOBE Index

    Впервые более чем за 20 лет у рейтинга языков программирования TIOBE Index появился новый лидер. В TIOBE Index октября 2021 года, потеснив постоянных лидеров рейтинга

Читать на сайте автора.

js. es6 some features

const

const Pi = 3.14;

SCOPING

block-scoped variables

// es 6 for (let i = 0; i < 10; i ++) { let x =

Читать на сайте автора.

Algo. Mult – Sum

Given an integer number n, return the difference between the product of its digits and the sum of its digits. Example 1: Input: n =

Читать на сайте автора.

Algo. Running sum

Task

Given an array nums. We define a running sum of an array as runningSum[i] = sum(nums[0]…nums[i]). Return the running sum of nums. Example 1:

Читать на сайте автора.

Css. Block model

margin

border

padding

content

margins by horizontal added, by vertical joined

Читать на сайте автора.

Сss. BEM (Block Element Modificator)

BLOCK AND ELEMENT

Blocks can be inside blocks infinite times

<div class = «block»> <div class = «block__element»> </div> <div class = «anotherBlockInside»> <div class

Читать на сайте автора.