function partial(fn, str1, str2) {

            let result=fn.bind(null,str1,str2)

            return result

        }