Skip to content

Latest commit

 

History

History

00110-medium-capitalize

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Capitalize medium #template-literal

by Anthony Fu @antfu

Take the Challenge    简体中文 日本語

Implement Capitalize<T> which converts the first letter of a string to uppercase and leave the rest as-is.

For example

type capitalized = Capitalize<'hello world'> // expected to be 'Hello world'

Back Share your Solutions Check out Solutions