Code Challenge #12: JavaScript String Manipulation
Last time on the Code Challenge #11 we solved problems in JavaScript using functions to manipulate objects.
This week on the code challenge we shall delve further into the important basics with String Manipulation challenges.
Strings in JavaScript are data types containing characters in single or double quotes.
Manipulating Strings are an integral part of app development and is applied in numerous cases from modifying user input data to making UX and UI decisions on a page depending on specific user inputs.
The Challenge
In this challenge, we'll be solving five problems with possibly increased difficulty from first to last.
The five problems are:
Padded Number
In this challenge, an array is provided and stored in a variable, create a function which evaluates the strings in the array by ad...