闭包问题
function partial(fn, str1, str2) {
    return function result(str) {
        return fn(str1, str2, str);
    }
}