阅读源代码,但我遇到了const {foo} = foo;

时间:2016-06-08 05:08:29

标签: javascript const

在javascript中我遇到grep -F -f smallF largeF ,这是什么意思?  有人可以解释一下吗?我已经尝试了所有我能做的事情,但仍然让我感到困惑。

1 个答案:

答案 0 :(得分:0)

如果你对./inverted_index_map.py testfilename.txt 感到困惑,{foo}似乎是赋值语句左侧的一个奇怪的对象,这是一个解构赋值:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment

但是如果你对const感到困惑,这只是一个const声明:https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Statements/const