79270584

Date: 2024-12-11 05:54:31
Score: 1.5
Natty:
Report link

Make the property static. And change it globaly for the class.

class MyClass {
  static prop = null
  ...

  constructor() {
    ...
  }

  ...
}

MyClass.prop = 'some value'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Дмитрий Рыков