HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
📯
부스트캠프 7기 BE 멤버쉽 설계
/
데코레이터는 왜 나왔을까요

데코레이터는 왜 나왔을까요

요약
확인
확인
레이블
7주차
function Injectable(){} @Injectable() // 이것 class Foo { hello() { console.log('hello world') } } const Foo = Injectable( class { hello() {} } )
네 맞습니다