최근 포스트

[angular] ngFor with TrackBy

2 분 소요

ngFor is a structural directive in Angular that iterates over a collection and renders a template for each item. While powerful, it has a potential performan...

[angular] Could Not Find Plugin proposal-numeric-separator

최대 1 분 소요

원인 @babel/compat-data에 새로운 플러그인이 추가될 때 기존 @babel/preset-env의 버전과 충돌합니다. available-plugins.js 파일에 정의되어 있지 않은 플러그인인 경우 에러를 던집니다.

[rust] 강좌12-Enum

1 분 소요

Enum 기본 기능은 다른 언어의 Enum과 유사합니다. 다만, 구조체와 같이 implement로 확장이 가능하며, Nullable 변수를 선언할 때 사용하는 등 활용도가 더 넓습니다.