-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01-closures.js
34 lines (25 loc) · 897 Bytes
/
01-closures.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/***
* What is Closures?
* A closure is the combination of a function bundled together (enclosed) with references to its surrounding state (the lexical environment).
* In other words, a closure gives you access to an outer function's scope from an inner function. In JavaScript, closures are created every time a function is created, at function creation time.
*
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Closures
*/
let x = 1000 // global scope
// function logxForMe() {
// console.log(x) // inside function scope
// }
// logxForMe()
function myAddFunction(x) {
return function (y) {
return x + y
}
}
const addMore = myAddFunction(5)
// window.console.log(addMore(45))
// Closures feature of javascript that gives function access to reference in the outside scope.
const test = () => {
console.log('test')
}
module.exports = test
console.log(module)