# <span class="fa-stack"><i class="fa-solid fa-circle fa-stack-2x"></i><i class="fa-solid fa-book fa-stack-1x fa-inverse"></i></span> Lambda Notation
- Lambda notation (fat arrow) uses the current value of `this`
```js
var y = {getThese: function(xs){ return xs.map(x => this)}};
var z = {getThese: function(xs){ return xs.map(function(x){ return this; })}};
```
```js
y.getThese([10,20,30])[0] === y // true
z.getThese([10,20,30])[0] === global // true (in Node.js)
z.getThese([10,20,30])[0] === window // true (in Browswer)
```
---