5 < 6 < 7 // true
// но при этом
8 > 4 > 2 // false
(8 > 4) > 2
(true) > 2
1 > 2
getStyles<T extends keyof CSSStyleDeclaration>(styles: readonly T[]) {
return styles.reduce((res, style) => {
res[style] = this.$nativeElement.style[style];
return res;
}, {} as Pick<CSSStyleDeclaration, T>);
}
CSSStyleDeclaration
. var i = 0;
if( (function(){return i%2==0})(i) ){
console.log(i);
};
// ##################################################################### //
// ############### Localization/Lokalisierung/Локализация ############## //
// ##################################################################### //