12 lines
139 B
Markdown
12 lines
139 B
Markdown
importance: 3
|
|
|
|
---
|
|
|
|
# What's the result of OR'ed alerts?
|
|
|
|
What the code below will output?
|
|
|
|
```js
|
|
alert( alert(1) || 2 || alert(3) );
|
|
```
|
|
|