enum ColorType {
RED = 1,
GREEN = 2,
BLUE = 3,
}
const values = Object.values(ColorType)
// -> ['RED', 'GREEN', 'BLUE', 1, 2, 3]
const colorList = Object.values(ColorType).filter(value => typeof value === 'string')
// -> ['RED', 'GREEN', 'BLUE']
'KNOW-HOW > SCRIPT' 카테고리의 다른 글
[ image polling ] (0) | 2024.08.21 |
---|---|
read JSON file from URL in Javascript (0) | 2022.10.20 |
[ react. 조건에 따른 컴포넌트 바꾸기 ] (0) | 2021.12.22 |
[TS] 객체의 key값으로 enum 사용하기 (Use Enum as restricted key type in Typescript) (0) | 2021.12.03 |
CSS property value 간단히 적용하기 (2) | 2021.09.30 |