Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

WEB230 JavaScript 1 Assignment 1b You can get the Nth character, or letter, from a string by writing string[N]. The returned value will be a

image text in transcribed
image text in transcribed
WEB230 JavaScript 1 Assignment 1b You can get the Nth character, or letter, from a string by writing string[N]. The returned value will be a string containing only one character (for example, "a"). The first character has position 0, which causes the last one to be found at position string. length 1. In other words, a two-character string has length 2, and its characters have positions 0 and 1. 1. Write a function called third that will: o take a string as a parameter o return the 3rd character of the string 2. Prompt the user for a string. 3. Display the original string and the result of the function to the console. 4. Modify the function so that if the string is shorter than 3 characters it will return the string "too short". 5. Modify the function so that if the third character is a space it will return the word "space" Sample Output User enters "Canada", output: Canadan Sample Output User enters "Canada", output: Canada User enters "Of course!", output: Of course! space User enters "ha", output: ha too short Submission: Do not use the var keyword. Instead use let or const. . Do not include any HTML tags Do not use document.write() Save your code to a file called asib.js submit this file, do not zip it

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning C# 5.0 Databases

Authors: Vidya Vrat Agarwal

2nd Edition

1430242604, 978-1430242604

More Books

Students also viewed these Databases questions