Create a JavaScript Arrow function that meets the following requirements: Authored using arrow expression syntax (constant name is _replaceCharacter) The function is passed 1 string argument The function returns to the caller a new version of source string where: All character occurrences that match the first character are replaced with *' The function is case sensitive (for example 'a' != “A') The first character is never replaced (only subsequent characters after the first) Console log output is NOT permitted. The function should pass each of the illustrated examples below at a minimum. replaceCharacter("abccCa") → "abccC*" _replaceCharacter("") → "" _replaceCharacter("george brown college") → "geor*e brown colle*e" replaceCharacter("AA bb aa BB cc AAA") → "A* bb aa BB cc ***"

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section: Chapter Questions
Problem 6PP
icon
Related questions
Question

JAVASCRIPT QSTN

Function 1: Replace Character
Create a JavaScript Arrow function that meets the following requirements:
Authored using arrow expression syntax (constant name is _replaceCharacter)
The function is passed 1 string argument
The function returns to the caller a new version of source string where:
All character occurrences that match the first character are replaced with *'
The function is case sensitive (for example 'a' != 'A')
The first character is never replaced (only subsequent characters after the first)
Console log output is NOT permitted.
The function should pass each of the illustrated examples below at a minimum.
replaceCharacter("abccCa") → "abccC*"
_replaceCharacter("") →
_replaceCharacter("george brown college") → "geor*e brown colle*e"
replaceCharacter("AA bb aa BB cc AAA") → "A* bb aa BB cc
W//
***"
Transcribed Image Text:Function 1: Replace Character Create a JavaScript Arrow function that meets the following requirements: Authored using arrow expression syntax (constant name is _replaceCharacter) The function is passed 1 string argument The function returns to the caller a new version of source string where: All character occurrences that match the first character are replaced with *' The function is case sensitive (for example 'a' != 'A') The first character is never replaced (only subsequent characters after the first) Console log output is NOT permitted. The function should pass each of the illustrated examples below at a minimum. replaceCharacter("abccCa") → "abccC*" _replaceCharacter("") → _replaceCharacter("george brown college") → "geor*e brown colle*e" replaceCharacter("AA bb aa BB cc AAA") → "A* bb aa BB cc W// ***"
Expert Solution
steps

Step by step

Solved in 4 steps with 6 images

Blurred answer
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning