We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f14079d commit cc5aae3Copy full SHA for cc5aae3
docs/2-browser-apps/03-class/_samples/car-class/script.js
@@ -6,4 +6,6 @@ class Car {
6
const prius = new Car();
7
prius.cost = 2600000;
8
9
-document.write(`重さは${prius.weightInTons}tで、値段は${prius.cost}円です。`);
+document.write(
10
+ `重さは${prius.weightInTons}トンで、値段は${prius.cost}円です。`,
11
+);
docs/2-browser-apps/03-class/index.mdx
@@ -75,7 +75,9 @@ class Car {
75
76
77
78
79
80
81
```
82
83
<ViewSource url={import.meta.url} path="_samples/car-class" />
0 commit comments