20 lines
233 B
Markdown
20 lines
233 B
Markdown
|
# .cadoles-slide-title[Fonctions (5/5)]
|
||
|
|
||
|
**Le "levage" (_hoisting_) des fonctions et variables**
|
||
|
|
||
|
```js
|
||
|
|
||
|
postFunc(); // Pas d'erreur
|
||
|
|
||
|
var foo = 'bar';
|
||
|
|
||
|
function postFunc() {
|
||
|
|
||
|
console.log(foo); // -> undefined
|
||
|
|
||
|
var foo;
|
||
|
|
||
|
}
|
||
|
|
||
|
```
|