classproperties.js 172 B

123456789101112
  1. /** Sample class. */
  2. class A {
  3. /** Public property. */
  4. b = 1;
  5. /** Private property. */
  6. #c = 2;
  7. /** Property with no value assigned to it. */
  8. d;
  9. }