questions/00018-easy-tuple-length/README.md
For given a tuple, you need create a generic Length, pick the length of the tuple
For example:
type tesla = ['tesla', 'model 3', 'model X', 'model Y']
type spaceX = ['FALCON 9', 'FALCON HEAVY', 'DRAGON', 'STARSHIP', 'HUMAN SPACEFLIGHT']
type teslaLength = Length<tesla> // expected 4
type spaceXLength = Length<spaceX> // expected 5
<a href="../../README.md" target="_blank"></a> <a href="https://tsch.js.org/18/answer" target="_blank"></a> <a href="https://tsch.js.org/18/solutions" target="_blank"></a> <!--info-footer-end-->