46. implement `_.once()`

JavaScriptLodash

medium  - accepted / - tried

_.once(func) is used to force a function to be called only once, later calls only returns the result of first call.

Can you implement your own once()?

function func(num) {  return num}const onced = once(func)onced(1) // 1, func called with 1onced(2)// 1, even 2 is passed, previous result is returned 

Always try to find a better approach.