mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
23 lines
238 B
Markdown
23 lines
238 B
Markdown
|
---
|
||
|
id: a4ca4dd0-98ec-41a9-9220-815639dc5fe1
|
||
|
title: anonymous
|
||
|
---
|
||
|
|
||
|
# Definition
|
||
|
|
||
|
Nameless functions
|
||
|
|
||
|
# Examples
|
||
|
|
||
|
``` javascript
|
||
|
const nums = [1, 2, 3]
|
||
|
|
||
|
nums.map(x => x * 2)
|
||
|
```
|
||
|
|
||
|
``` python
|
||
|
nums = [1, 2, 3]
|
||
|
|
||
|
map(lambda x: x * 2, nums)
|
||
|
```
|