Skip to content

Commit 4762804

Browse files
committed
Question 134
1 parent 735b281 commit 4762804

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nl-NL/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4334,7 +4334,7 @@ import * as sum from "./sum";
43344334
43354335
#### Antwoord: C
43364336
4337-
With the asterisk `*`, we import all exported values from that file, both default en named. If we had the following file:
4337+
Met het sterretje `*` importeren we alle geëxporteerde waarden van een bestand, zowel de default als de benaamde. Als we het volgende bestand hadden:
43384338
43394339
```javascript
43404340
// info.js
@@ -4347,7 +4347,7 @@ import * as info from "./info";
43474347
console.log(info);
43484348
```
43494349
4350-
The following would get logged:
4350+
Het volgende zou gelogd worden:
43514351
43524352
```javascript
43534353
{
@@ -4357,13 +4357,13 @@ The following would get logged:
43574357
}
43584358
```
43594359
4360-
For the `sum` example, it means that the imported value `sum` looks like this:
4360+
Voor het `sum` voorbeeld betekent dit dat de geïmporteerde waarde `sum` eruit ziet als:
43614361
43624362
```javascript
43634363
{ default: function sum(x) { return x + x } }
43644364
```
43654365
4366-
We can invoke this function, by calling `sum.default`
4366+
We kunnen deze functie aanvoeren door `sum.default` aan te roepen.
43674367
43684368
</p>
43694369
</details>

0 commit comments

Comments
 (0)