Introduction To Programming Write a program that receives five strings into variables. The program calculates the length of each string and stores the length into variables. For each entered string the program will output a line like the sample output below.
Hint: Review this if you've forgotten how to get the length of a string: The length function
The List of Input Variables:
The List of Output Variables:
The Process Checklist:
Write the JavaScript code based on everything you've done. Your code must follow the course coding standards.
length: 11, "This string"
length: 26, "Here's another nice string"
length: 5, "short"
length: 56, "How about a very long string that seems to go on and on."
length: 2, "hi"