mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
321 B
17 lines
321 B
4 years ago
|
## 🌟 Give Back
|
||
|
|
||
|
### Instruction
|
||
|
|
||
|
Declare an `giveBack` function an argument and return a new function that when
|
||
|
called will return the argument of the `giveBack` function
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
```js
|
||
|
const give5 = giveBack(5)
|
||
|
const giveHello = giveBack('Hello')
|
||
|
|
||
|
console.log(give5()) // 5
|
||
|
console.log(giveHello()) // 'Hello'
|
||
|
```
|