public/subjects/give-back
Christopher Fremond 4a76bbcec5
Update README.md
2021-11-02 13:08:37 +00:00
..
README.md Update README.md 2021-11-02 13:08:37 +00:00

README.md

🌟 Give Back

Instruction

Declare a giveBack function which takes an argument and returns a new function that when called will return the argument of the giveBack function

Usage

const give5 = giveBack(5)
const giveHello = giveBack('Hello')

console.log(give5()) // 5
console.log(giveHello()) // 'Hello'