We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54586c6 commit 2afe237Copy full SHA for 2afe237
1-js/06-advanced-functions/03-closure/7-let-scope/solution.md
@@ -26,15 +26,9 @@ Le code ci-dessus le démontre.
26
```js
27
function func() {
28
*!*
29
-<<<<<<< HEAD
30
// la variable locale x est connue du moteur depuis le début de la fonction,
31
// mais "non initialisée" (inutilisable) jusqu'à let ("zone morte")
32
// d'où l'erreur
33
-=======
34
- // the local variable x is known to the engine from the beginning of the function,
35
- // but "uninitialized" (unusable) until let ("dead zone")
36
- // hence the error
37
->>>>>>> 7b76185892aa9798c3f058256aed44a9fb413cc3
38
*/!*
39
40
console.log(x); // ReferenceError: Cannot access 'x' before initialization
0 commit comments