1.8 KiB
1.8 KiB
id, title, challengeType
id | title | challengeType |
---|---|---|
bd7123c9c452eddfaeb5bdef | Use Bracket Notation to Find the Nth-to-Last Character in a String | 1 |
Description
var firstName = "Charles"
string by using firstName[firstName.length - 3]
Instructions
lastName
string.
HintTry looking at the
thirdToLastLetterOfFirstName
variable declaration if you get stuck.
Tests
tests:
- text: <code>secondToLastLetterOfLastName</code> should be "c".
testString: 'assert(secondToLastLetterOfLastName === "c", "<code>secondToLastLetterOfLastName</code> should be "c".");'
- text: You have to use <code>.length</code> to get the second last letter.
testString: 'assert(code.match(/\.length/g).length === 2, "You have to use <code>.length</code> to get the second last letter.");'
Challenge Seed
// Example
var firstName = "Ada";
var thirdToLastLetterOfFirstName = firstName[firstName.length - 3];
// Setup
var lastName = "Lovelace";
// Only change code below this line
var secondToLastLetterOfLastName = lastName;
After Test
console.info('after the test');
Solution
var firstName = "Ada";
var thirdToLastLetterOfFirstName = firstName[firstName.length - 3];
var lastName = "Lovelace";
var secondToLastLetterOfLastName = lastName[lastName.length - 2];