To capitalize a string in TypeScript, you can use either toUpperCase() or toLocaleUpperCase() method of the string object.
index.ts102 chars4 lines
Output: "HELLO WORLD"
If you want to capitalize only the first letter of the string, you can use the slice() method as shown below:
index.ts133 chars4 lines
Output: "Hello world"
gistlibby LogSnag