So here’s a little JavaScript initialisation order quiz.
Take the following code:
```js
class A {
constructor (parameters = {}) {
Object.assign(this, parameters)
}
}
class B extends A {
foo
constructor (parameters) {
super(parameters)
this.foo ??= ‘no’
}
}
const b1 = new B()
const b2 = new B({ foo: ‘ok’ })
console.info(`${b1.foo}, ${b2.foo}`)
```
What output would you s…
Urban Demons VII 👻
城市鬼魂 VII 👻
📷 Zeiss IKON Super Ikonta 533/16
🎞️ Ilford HP5 400 Plus, expired 1993
If you like my work, buy me a coffee from PayPal https://www.paypal.com/paypalme/ydcdingsite
GCVE-BCP-08 - GCVE GNA Directory File
Following some good pre-discussion at #fosdem - a first draft of the directory file specification has been updated. The goal is clarify some of the fields. Feedback is more than welcome.
@…@…