Помогите пожалуйста написать учебный пример чтобы было видно действие и выгода инкапсуляции стилей. Мой вариант тут.
непонятно какое действие осуществляет метааргумент encapsulation: ViewEncapsulation.None
Есть корневой элемент и есть вложенный элемент. В каждом из них я отключил инкапсуляцию, но в результате к обоим применяются стили из первого. Где логика?
Как видите, ответвление 91d2463, 3e391bf по-прежнему существует. Помогите пожалуйста от него избавиться.
Я хотел бы избавиться от ответвления: 91d2463, 3e391bf чтобы история выглядела как одна линия.
git rebase 3a0067f
. Проблема в том, что второй компонент не выводит ни одного console.log().
private ngUnsubscribe: Subject<void> = new Subject<void>();
, cледовательно ничего кроме "пустого" значения передать в .next() компилятор тайпскрипта и не разрешит.The Observer callback to receive a valueless notification of type complete from the Observable. Notifies the Observer that the Observable has finished sending push-based notifications.
const obs = Observable.timer(0, 3000);
obs.subscribe(i => console.log(i));
obs.subscribe(i => console.log('tick', i));
.mergeMap(() => this.httpClient.get('https://api.github.com/users'), (event, users) => ({ event, users }))
var timeoutID = scope.setTimeout(function[, delay, param1, param2, ...]);
delay - Optional
The time, in milliseconds (thousandths of a second), the timer should wait before the specified function or code is executed. If this parameter is omitted, a value of 0 is used, meaning execute "immediately", or more accurately, as soon as possible. Note that in either case, the actual delay may be longer than intended; see Reasons for delays longer than specified below.
Кроме того, если её запустить в консоли браузера хром, то кроме фразы 'hello' выводится какая-то цифра.
n, n + 1, n + 2, ..., n + m - 1
1, 2, 3, 4, 5
0, 1, 2, 3, 4
{ sum: 15, count: 5 }
{ sum: 10, count: 5 }
x = 15 / 5;
x = 10 / 5;
Этот код вместо результата выводит undefined.
function Ship(x, y) {
this.x = x;
this.y = y;
}
function PlayerShip(x, y) {
Ship.call(this, x, y);
this.petrol = 100;
}