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/strings/problem.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ For this challenge, create a file named `strings.js`.
In that file create a variable named `someString` like this:

```js
var someString = 'this is a string';
const someString = 'this is a string';
```

Use `console.log` to print the variable **someString** to the terminal.
Expand Down
2 changes: 1 addition & 1 deletion problems/strings/problem_es.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Para este ejercicio, crea un archivo llamado `strings.js`.
En ese archivo define una variable llamada `someString` de la siguiente forma:

```js
var someString = 'this is a string';
const someString = 'this is a string';
```

Utiliza `console.log` para imprimir la variable `someString` a la terminal.
Expand Down
2 changes: 1 addition & 1 deletion problems/strings/problem_fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Pour ce défi, créez un fichier nommé `chaines.js`.
Dans ce fichier, créez une variable nommée `someString` comme cela :

```js
var someString = 'this is a string';
const someString = 'this is a string';
```

Utilisez `console.log` pour afficher la variable **someString** dans le terminal.
Expand Down
2 changes: 1 addition & 1 deletion problems/strings/problem_it.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Per risolvere questa sfida, crea un file dal nome `strings.js`.
In questo file crea una variabile dal nome `someString` come segue:

```js
var someString = 'this is a string';
const someString = 'this is a string';
```

Usa `console.log` per stampare la variabile **someString** sul terminale.
Expand Down
2 changes: 1 addition & 1 deletion problems/strings/problem_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
ファイルの中で、次のように変数 `someString` を作りましょう。

```js
var someString = 'this is a string';
const someString = 'this is a string';
```

`console.log` を使い、変数 **someString** をターミナルに表示しましょう。
Expand Down
2 changes: 1 addition & 1 deletion problems/strings/problem_ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
그 파일 안에서 `someString`이라는 변수를 만드세요. 이렇게 하면 됩니다.

```js
var someString = 'this is a string';
const someString = 'this is a string';
```

`console.log`를 사용해 **someString** 변수를 터미널에 출력합니다.
Expand Down
2 changes: 1 addition & 1 deletion problems/strings/problem_nb-no.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ I denne oppgaven, lage en fil med navnet `strings.js`.
Lage en variabel `someString`, slik som dette:

```js
var someString = 'this is a string';
const someString = 'this is a string';
```

For å skrive variabelen **someString** til skjermen kan du bruke `console.log`.
Expand Down
2 changes: 1 addition & 1 deletion problems/strings/problem_pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Para este desafio, crie um arquivo chamado `strings.js`.
No arquivo que foi criado, crie uma variável chamada `someString` da seguinte forma:

```js
var someString = 'this is a string';
const someString = 'this is a string';
```

Use o `console.log` para imprimir a variável **someString** para o terminal.
Expand Down
2 changes: 1 addition & 1 deletion problems/strings/problem_ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
В этом файле объявите переменную `someString` таким образом:

```js
var someString = 'this is a string';
const someString = 'this is a string';
```

Воспользуйтесь командой `console.log()`, чтобы вывести значение переменной **someString** в консоль.
Expand Down
2 changes: 1 addition & 1 deletion problems/strings/problem_uk.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
У цьому файлі створіть змінну `someString` ось так:

```js
var someString = 'this is a string';
const someString = 'this is a string';
```

Використайте `console.log`, щоб вивести змінну **someString** до терміналу.
Expand Down
2 changes: 1 addition & 1 deletion problems/strings/problem_zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
在文件中像这样创建一个名为 `someString` 的变量:

```js
var someString = 'this is a string';
const someString = 'this is a string';
```

使用 `console.log` 打印变量 **someString** 到终端。
Expand Down
2 changes: 1 addition & 1 deletion problems/strings/problem_zh-tw.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
在該檔案中像這樣建立一個名為 `someString` 的變數:

```js
var someString = 'this is a string';
const someString = 'this is a string';
```

使用 `console.log` 印出變數 **someString** 到終端機上。
Expand Down