const assertion
[ TypeScript ] type-challenges - 00011-easy-tuple-to-object
00011-easy-tuple-to-object [ 문제 설명 ] Given an array, transform it into an object type and the key/value must be in the provided array. [ 문제 ] type TupleToObject = any [ 예시 ] const tuple = ['tesla', 'model 3', 'model X', 'model Y'] as const type result = TupleToObject // expected { 'tesla': 'tesla', 'model 3': 'model 3', 'model X': 'model X', 'model Y': 'model Y'} 시작하기 전에,, 4번과 7번 문제는 정답에 대한 설명 없..