本文介绍了什么是||操作员呢?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Attacklab.wmd_env.buttons=Attacklab.wmd_env.buttons||_4;

什么是||在这种情况下做什么?

将_4添加到Attacklab.wmd_env.buttons数组?

what does the || do in this case?
Adds _4 to the array which is Attacklab.wmd_env.buttons?

推荐答案

JavaScript中的 || 运算符返回左侧的值,如果该值未计算为 false ,否则返回右边的值。

The || operator in JavaScript returns the value on the left if that value does not evaluate to false, otherwise it returns the value on the right.

来自:

因此,在这种情况下,如果 Attacklab.wmd_env.buttons 没有值,它将值设置为 _4

So, in this case, if Attacklab.wmd_env.buttons doesn't have a value, it sets the value to _4.

这篇关于什么是||操作员呢?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 08:20