报错信息:Exception: HTTP 599: SSL certificate problem: unable to get local issuer certificate
之前刚进去的第一个页面时候也是这个报错,但是等到今天它就没有了,我准备再等等。万一好了了!! 之前第一个页面就是…
高阶函数是接受另一个函数作为参数或返回一个函数作为返回值或两者兼有的函数。 const firstOrderFunc () > console.log(hello, i am a first order function);
const higherOrder (ReturnFirstOrderFunc) > ReturnFirstOrderFunc();
higherOrder(firstOrderFunc);
复…