This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
console.log(this); //undefined | |
function Person(name, age) { | |
this.name = name; | |
this.age = age; | |
this.sayName = () => { | |
console.log(this.name); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Function calls n-times before get '()'; | |
const closureFn = firstArgument => { | |
let sum = firstArgument; | |
return function callMe(nextArgument) { | |
if (nextArgument) { | |
sum += nextArgument; | |
return callMe; | |
} | |
return sum; |
NewerOlder