Article components

console.log('Hello world')
js
const a = {
test: 'test'
testTwo: 'test'
testThree: 'test'
};
 
console.log(a.te
                
 
 
console.log(a);
const a: { test: string; testTwo: string; testThree: string; }
js
const a = {
joo: 'test'
};
 
console.log(a.foo);
Property 'foo' does not exist on type '{ joo: string; }'.2339Property 'foo' does not exist on type '{ joo: string; }'.
ts
interface Person {
name: string
}
 
interface Person {
age: number
}
 
// `Person` is now merged and expects `name` and `age`
const p: Person = {
Property 'name' is missing in type '{ age: number; }' but required in type 'Person'.2741Property 'name' is missing in type '{ age: number; }' but required in type 'Person'.
age: 99
}
[css-conditional] [css-contain] `srcset` and `sizes` interaction with container queries
una opened it Jan 22 2021
MDN Compat Data (source)
Browser support info for @property
chromechrome_androidedgefirefoxfirefox_androidsafarisafari_iossamsunginternet_androidwebview_android
858585previewpreview16.416.414.085