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.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question

USING ARROW FUNCTIONS IN JAVASCRIPT WRITE THE FOLLOWING CODE

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 3 steps with 2 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++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning