fix(curriculum): remove unnecessary backticks (#42458)

This commit is contained in:
Ilenia
2021-06-12 20:53:45 +02:00
committed by GitHub
parent ca2f024aec
commit ce3ccc47d4

View File

@ -9,7 +9,7 @@ dashedName: global-vs--local-scope-in-functions
# --description-- # --description--
It is possible to have both <dfn>local</dfn> and <dfn>global</dfn> variables with the same name. When you do this, the `local` variable takes precedence over the `global` variable. It is possible to have both <dfn>local</dfn> and <dfn>global</dfn> variables with the same name. When you do this, the local variable takes precedence over the global variable.
In this example: In this example:
@ -21,7 +21,7 @@ function myFun() {
} }
``` ```
The function `myFun` will return the string `Head` because the `local` version of the variable is present. The function `myFun` will return the string `Head` because the local version of the variable is present.
# --instructions-- # --instructions--