mirror of
https://github.com/Aviortheking/IMIE_CQ.git
synced 2025-04-23 03:12:09 +00:00
20 lines
312 B
JavaScript
20 lines
312 B
JavaScript
this.test = 'pouet'
|
|
|
|
console.log(this.test) // retourne 'pouet'
|
|
|
|
const fn2 = function() {
|
|
console.log(this.test) // retourne undefined
|
|
this.pokemon = 'go'
|
|
}
|
|
fn2()
|
|
|
|
console.log(this.pokemon)
|
|
|
|
const fn = () => {
|
|
console.log(this.test) // retourne 'pouet'
|
|
this.pokemon = 'go'
|
|
}
|
|
fn()
|
|
|
|
console.log(this.pokemon)
|