Autosave: 2023-02-17 11:02:50

This commit is contained in:
thomasabishop 2023-02-17 11:02:50 +00:00
parent d69aa9cfe5
commit 7afcd00f8e

View file

@ -15,10 +15,14 @@ They are most often used unnamed with the functional methods [map, filter and re
Here is the two syntaxes side by side:
```js
// JavaScript
const double = (x) => x * x;
```
```py
# Python
double = lambda x: x * x
```