ASAndrew Sittner (Andrew Sittner)·Nov 17, 201902Can someone help me understand what this code does?function learning(x,y) { return function inLearning(z){ return console.log(x) + console.log(y) + console.log(z); }; };HMHashnode and 1 more commented