12 lines
114 B
Markdown
12 lines
114 B
Markdown
importance: 5
|
|
|
|
---
|
|
|
|
# The result of OR AND OR
|
|
|
|
What will be the result?
|
|
|
|
```js
|
|
alert( null || 2 && 3 || 4 );
|
|
```
|
|
|