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

1.4 KiB

id title challengeType videoUrl forumTopicId dashedName
bd7123c9c451eddfaeb5bdef 使用方括号查找字符串中的最后一个字符 1 https://scrimba.com/c/cBZQGcv 18342 use-bracket-notation-to-find-the-last-character-in-a-string

--description--

要获取字符串的最后一个字符,可以用字符串的长度减 1 的索引值。

例如,在 var firstName = "Charles" 中,可以用 firstName[firstName.length - 1] 来得到字符串的最后的一个字符。

示例:

var firstName = "Charles";
var lastLetter = firstName[firstName.length - 1];

lastLetter 值为字符串 s

--instructions--

使用方括号表示法( bracket notation)来找到 lastName 变量中的最后一个字符。

提示: 如果卡住了,请尝试查看上面的示例。

--hints--

lastLetterOfLastName 应该是字母 e

assert(lastLetterOfLastName === 'e');

您应该使用 .length 获取最后一个字母。

assert(code.match(/\.length/g).length > 0);

--seed--

--after-user-code--

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

--seed-contents--

// Setup
var lastName = "Lovelace";

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

--solutions--

var lastName = "Lovelace";
var lastLetterOfLastName = lastName[lastName.length - 1];