Coding Challenge: Word Information
Test the concepts of Strings that you have learned so far.
We'll cover the following
Problem statement
Write a program that returns the length of a given word, and its lowercase, and uppercase version.
Input
length("hello");
lowerCase("BrEak");
upperCase("LiVe");
Expected output
5
'break'
'LIVE'
Coding exercise
Get hands-on with 1400+ tech skills courses.