Trim Right medium #template-literal

by Yugang Cao @Talljack

Take the Challenge    简体中文 한국어

Implement `TrimRight` which takes an exact string type and returns a new string with the whitespace ending removed. For example: ```ts type Trimed = TrimRight<' Hello World '> // expected to be ' Hello World' ```
Back Share your Solutions Check out Solutions

Related Challenges

106・Trim Left 108・Trim