Length of Tuple easy #tuple

by sinoon @sinoon

Take the Challenge    简体中文 日本語 한국어

For given a tuple, you need create a generic `Length`, pick the length of the tuple For example: ```ts type tesla = ['tesla', 'model 3', 'model X', 'model Y'] type spaceX = ['FALCON 9', 'FALCON HEAVY', 'DRAGON', 'STARSHIP', 'HUMAN SPACEFLIGHT'] type teslaLength = Length // expected 4 type spaceXLength = Length // expected 5 ```
Back Share your Solutions Check out Solutions