docs(lines): fix small grammar issues

This commit is contained in:
nprimo 2024-06-26 09:50:42 +01:00 committed by Niccolò Primo
parent 2acd119740
commit effc28bfd2
1 changed files with 8 additions and 8 deletions

View File

@ -9,35 +9,35 @@ Also the single and double quote delimited strings can't actually have literal
new lines: new lines:
```js ```js
let fewlines = '\nHello👏\nThere👏\n' let fewlines = "\nHello👏\nThere👏\n";
// Same string but with litteral new lines: // Same string but with literal new lines:
let usingLiteral = ` let usingLiteral = `
Hello👏 Hello👏
There👏 There👏
` `;
``` ```
You can use the literal `\n` character to split text on each lines: You can use the literal `\n` character to split text on each lines:
```js ```js
let splited = ` let splitted = `
Hello👏 Hello👏
There👏 There👏
`.split('\n') `.split("\n");
console.log(splited) // ['','Hello👏','There👏', ''] console.log(splitted); // ['','Hello👏','There👏', '']
// Note that empty lines becomes empty strings ! // Note that empty lines becomes empty strings !
``` ```
### Instructions ### Instructions
You have been recruted to analyse a bunch of poems, your first task is to count You have been recruited to analyse a bunch of poems, your first task is to count
the number of lines. the number of lines.
- Declare a variable `linesCount` of the number of lines from the provided - Declare a variable `linesCount` of the number of lines from the provided
`poem` variable. `poem` variable.
But you must ignore empty lines in the begining and the end using the `trim` However, you must ignore empty lines in the beginning and the end using the `trim`
string method. string method.
### Notions ### Notions