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

69 lines
1.6 KiB
Markdown
Raw Normal View History

---
id: bd7123c9c452eddfaeb5bdef
title: Usare la notazione parentesi per trovare l'n-ultimo carattere dalla fine di una stringa
challengeType: 1
videoUrl: 'https://scrimba.com/c/cw4vkh9'
forumTopicId: 18344
dashedName: use-bracket-notation-to-find-the-nth-to-last-character-in-a-string
---
# --description--
È possibile utilizzare lo stesso principio che abbiamo appena usato per recuperare l'ultimo carattere in una stringa per recuperare il carattere n-ultimo dalla fine.
Ad esempio, puoi ottenere il valore della terzultima lettera della stringa `var firstName = "Augusta"` usando `firstName[firstName. lunghezza - 3]`
Esempio:
```js
var firstName = "Augusta";
var thirdToLastLetter = firstName[firstName.length - 3];
```
`thirdToLastLetter` dovrebbe avere un valore stringa `s`.
# --instructions--
Usa <dfn>la notazione a parentesi</dfn> per trovare il penultimo carattere nella stringa `lastName`.
**Suggerimento:** Prova a guardare l'esempio qui sopra se ti blocchi.
# --hints--
`secondToLastLetterOfLastName` dovrebbe essere la lettera `c`.
```js
assert(secondToLastLetterOfLastName === 'c');
```
Dovresti usare `.length` per ottenere la penultima lettera.
```js
assert(code.match(/\.length/g).length > 0);
```
# --seed--
## --after-user-code--
```js
(function(v){return v;})(secondToLastLetterOfLastName);
```
## --seed-contents--
```js
// Setup
var lastName = "Lovelace";
// Only change code below this line
var secondToLastLetterOfLastName = lastName; // Change this line
```
# --solutions--
```js
var lastName = "Lovelace";
var secondToLastLetterOfLastName = lastName[lastName.length - 2];
```