We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27ddd36 commit d493301Copy full SHA for d493301
.prettierignore
@@ -0,0 +1 @@
1
+/problems/strings/problem_ja.md
problems/strings/problem_ja.md
@@ -1,16 +1,17 @@
-**文字列**は引用符でくくった値です。
+**文字列** は引用符でくくった値です。
2
3
引用符は一重引用符と二重引用符のどちらも使えます。例えば...
4
5
```js
6
-"this is a string";
+'this is a string';
7
8
"this is also a string";
9
```
10
11
## 注意
12
13
-どちらかの引用符を使うルールを決め、守りましょう。 このワークショップでは一重引用符だけを使います。
+どちらかの引用符を使うルールを決め、守りましょう。
14
+このワークショップでは二重引用符だけを使います。
15
16
## やってみよう
17
problems/strings/solution_ja.md
@@ -3,7 +3,7 @@
文字列の使い方に慣れてきました。
-次の課題では文字列の編集を扱います。
+次の課題では文字列の結合を扱います。
コンソールで `javascripting` コマンドを実行します。次の課題を選択しましょう。
---
0 commit comments