Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不时这样做,特别是在 Javascript 中存储对对象中深层嵌套属性的引用,但我不确定这会被称为什么。多变量赋值?变量引用赋值?
myVar = myObject.myProperty = value
通常称为“链式分配”。
同样重要的是要区分这样一个事实,即您不仅要分配多个变量,还要分配更深层次的赋值操作的返回值。这就是为什么它是一个“链”而不是某种形式的组合操作。