freeCodeCamp/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/use-bracket-notation-to-find-the-nth-to-last-character-in-a-string.english.md
Randell Dawson e9212c61d2 fix(curriculum): Remove unnecessary assert message argument from English challenges JavaScript Algorithms and Data Structures - 01 (#36401)
* fix: rm assert msg basic-javascript

* fix: removed more assert msg args

* fix: fixed verbiage

Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com>
2019-07-13 08:07:53 +01:00

1.8 KiB

id, title, challengeType, videoUrl
id title challengeType videoUrl
bd7123c9c452eddfaeb5bdef Use Bracket Notation to Find the Nth-to-Last Character in a String 1 https://scrimba.com/c/cw4vkh9

Description

You can use the same principle we just used to retrieve the last character in a string to retrieve the Nth-to-last character. For example, you can get the value of the third-to-last letter of the var firstName = "Charles" string by using firstName[firstName.length - 3]

Instructions

Use bracket notation to find the second-to-last character in the lastName string. Hint
Try looking at the thirdToLastLetterOfFirstName variable declaration if you get stuck.

Tests

tests:
  - text: <code>secondToLastLetterOfLastName</code> should be "c".
    testString: assert(secondToLastLetterOfLastName === 'c');
  - text: You have to use <code>.length</code> to get the second last letter.
    testString: assert(code.match(/\.length/g).length === 2);

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

(function(v){return v;})(secondToLastLetterOfLastName);

Solution

var firstName = "Ada";
var thirdToLastLetterOfFirstName = firstName[firstName.length - 3];

var lastName = "Lovelace";
var secondToLastLetterOfLastName = lastName[lastName.length - 2];