freeCodeCamp/curriculum/challenges/chinese/02-javascript-algorithms-and-data-structures/basic-javascript/use-bracket-notation-to-find-the-nth-to-last-character-in-a-string.md

926 B
Raw Blame History

id, title, challengeType, videoUrl, forumTopicId
id title challengeType videoUrl forumTopicId
bd7123c9c452eddfaeb5bdef 使用方括号查找字符串中的第N个字符到最后一个字符 1 https://scrimba.com/c/cw4vkh9 18344

--description--

我们既可以获取字符串的最后一个字符也可以用获取字符串的倒数第N个字符。

例如,你可以这样firstName[firstName.length - 3]操作来获得var firstName = "Charles"字符串中的倒数第三个字符。

--instructions--

使用方括号来获得lastName字符串中的倒数第二个字符。

提示
如果你遇到困难了,不妨看看thirdToLastLetterOfFirstName变量是如何做到的。

--hints--

secondToLastLetterOfLastName应该是"c"。

assert(secondToLastLetterOfLastName === 'c');

你需要使用.length获取倒数第二个字符。

assert(code.match(/\.length/g).length === 2);

--solutions--