Skip to content

Commit 4908985

Browse files
authored
Merge pull request #151 from Dz0526/add-translation
add a bit translation
2 parents b22bfdc + 139819f commit 4908985

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

future-javascript/let.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,13 @@ for (var j = 0; j < 3; j++) {
146146

147147
```typescript
148148
var funcs = [];
149-
// create a bunch of functions
149+
// たくさんの関数を作成する
150150
for (let i = 0; i < 3; i++) { // Note the use of let
151151
funcs.push(function() {
152152
console.log(i);
153153
})
154154
}
155-
// call them
155+
// それらを呼び出す
156156
for (var j = 0; j < 3; j++) {
157157
funcs[j]();
158158
}

0 commit comments

Comments
 (0)