freeCodeCamp/curriculum/challenges/chinese-traditional/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 = "Ada" 中,那麼你可以通過 firstName[firstName.length - 1] 來得到字符串的最後的一個字符。

示例:

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

lastLetter 值爲字符串 a

--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];