How to remove an item elegantly from an array or its nested arrays in JavaScript / TypeScript?

后端 未结 0 460
深忆病人
深忆病人 2021-02-06 04:03

Lets say I have two classes:

class A {
  a: string | null = null;
}

class B {
  b: string | null = null;
  as: A[] = [];
}

You can see, that B c

相关标签:
回答
  • 消灭零回复
提交回复
热议问题