Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion problems/string-length/problem.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ You will often need to know how many characters are in a string.
For this you will use the `.length` property. Here's an example:

```js
var example = 'example string';
const example = 'example string';
example.length
```

Expand Down
2 changes: 1 addition & 1 deletion problems/string-length/problem_es.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Muy seguido necesitarás saber cuantos caracteres hay en una string.
Para esto, usarás la propiedad `.length`. Por ejemplo:

```js
var example = 'example string';
const example = 'example string';
example.length
```

Expand Down
2 changes: 1 addition & 1 deletion problems/string-length/problem_fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Vous allez assez souvent avoir besoin de savoir combien de caractères sont cont
Pour cela vous allez utiliser la propriété `.length`. Voici un exemple :

```js
var example = 'example string';
const example = 'example string';
example.length
```

Expand Down
2 changes: 1 addition & 1 deletion problems/string-length/problem_it.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Avrai spesso bisogno di conoscere quanti caratteri vi siano in una stringa.
A questo scopo userai la proprietà `.length`. Ecco un esempio:

```js
var example = 'example string';
const example = 'example string';
example.length
```

Expand Down
2 changes: 1 addition & 1 deletion problems/string-length/problem_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
そういう時は `.length` プロパティを使います。たとえば...

```js
var example = 'example string';
const example = 'example string';
example.length
```

Expand Down
2 changes: 1 addition & 1 deletion problems/string-length/problem_ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
이는 `.length` 속성을 이용하면 알 수 있습니다. 다음 예제를 보세요.

```js
var example = 'example string';
const example = 'example string';
example.length
```

Expand Down
2 changes: 1 addition & 1 deletion problems/string-length/problem_nb-no.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Du har ofte behov for å vite hvor mange tegn det er i en streng.
For å finne ut det kan du bruke `.length` egenskapen. Slik som dette:

```js
var example = 'eksempel streng';
const example = 'eksempel streng';
example.length
```

Expand Down
2 changes: 1 addition & 1 deletion problems/string-length/problem_pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Você irá frequentemente precisar saber quantos caracteres estão em uma string
Para isso você usará a propriedade `.length` da string. Aqui está um exemplo:

```js
var example = 'example string';
const example = 'example string';
example.length;
```

Expand Down
2 changes: 1 addition & 1 deletion problems/string-length/problem_ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Для этого мы будем использовать свойство `.length`. Например:

```js
var example = 'example string';
const example = 'example string';
example.length;
```

Expand Down
2 changes: 1 addition & 1 deletion problems/string-length/problem_uk.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Для цього ви можете використати властивість `.length`. Ось приклад:

```js
var example = 'example string';
const example = 'example string';
example.length
```

Expand Down
2 changes: 1 addition & 1 deletion problems/string-length/problem_zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
你可以使用 `.length` 来得到它。下面是一个例子:

```js
var example = 'example string';
const example = 'example string';
example.length
```

Expand Down
2 changes: 1 addition & 1 deletion problems/string-length/problem_zh-tw.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
你可以使用 `.length` 來得到它。下面是一個例子:

```js
var example = 'example string';
const example = 'example string';
example.length
```

Expand Down
2 changes: 1 addition & 1 deletion solutions/string-length/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
var example = 'example string';
const example = 'example string';
console.log(example.length);