主题
Function
const add = (a, b) => { return a + b; } const memoizedAdd = memoize(add); memoizedAdd(1, 2) // 3 memoizedAdd(1, 2) // 3