简体   繁体   中英

Trouble in understanding this syntax in JavaScript?

var log = (0, _lodash.memoize)(function (message) {
  console.log((0, _ansicolors.red)('WARNING:'), message);
});

I am facing difficulty in understanding the above code. This code was written in JavaScript.

基本上代码(0, _lodash.memoize)消除了创建新instance的需要,直接给你函数的值而不是引用。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM