hope you're doing good.
I wanted to know if it was possible to affect an async value to a class parameter in javascript, something like this :
export class MyClass {
static myParam = await myAsyncFunction();
}
It doesn't seem to work, and I would like to know how could I set it differently
Thank you in advance