Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 471 Bytes

File metadata and controls

25 lines (16 loc) · 471 Bytes

A Redundant Function

Write a function redundant that takes in a string str and returns a function that returns str.


Examples:

const f1 = redundant("apple")
f1() ➞ "apple"

const f2 = redundant("pear")
f2() ➞ "pear"

const f3 = redundant("")
f3() ➞ ""

Solution: