deleteBoard(id:string):void{
const found = this.getBoardByID(id);
//filter => 해당 id제외 해서 새로운 boards를 만듬
this.boards = this.boards.filter((board) => board.id !== found.id);
}
'JS > Nest.js' 카테고리의 다른 글
[Nest JS] Postgres SQL 설치, type ORM, 엔티티(테이블) 생성 (0) | 2024.08.17 |
---|---|
[Nest JS] 커스텀 파이프 구현 => 유효성 체크 (0) | 2024.08.17 |
[Nest JS] 없는 게시물 찾을때 예외처리 (0) | 2024.08.17 |
[Nest JS] 파이프 for 유효성체크 (0) | 2024.08.17 |
[Nest JS] Update 구현 (0) | 2024.08.17 |