freeCodeCamp/curriculum/challenges/arabic/02-javascript-algorithms-an.../basic-javascript/use-bracket-notation-to-fin...

1006 B

id title challengeType videoUrl localeTitle
bd7123c9c451eddfaeb5bdef Use Bracket Notation to Find the Last Character in a String 1

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

// Example
var firstName = "Ada";
var lastLetterOfFirstName = firstName[firstName.length - 1];

// Setup
var lastName = "Lovelace";

// Only change code below this line.
var lastLetterOfLastName = lastName;

After Test

console.info('after the test');

Solution

// solution required