逻辑或分配 (||=) 不适用于 NodeJS

Logical OR assignment (||=) not working on NodeJS

我正在尝试使用 Logical OR assignment ||=。我这行代码很简单

parish.email ||= parishB.EMAIL

虽然我得到

/home/joao/dev/geoptapi/prepareServer.js:278
          parish.email ||= parishB.EMAIL
                       ^^^

SyntaxError: Unexpected token '||='

我的节点版本是v14.17.0

逻辑或分配在 Node>=15

可用