en.javascript.info/1-js/02-first-steps/11-logical-operators/3-alert-1-null-2/task.md
2018-11-09 08:25:40 +01:00

12 lines
120 B
Markdown

importance: 5
---
# What is the result of AND?
What is this code going to show?
```js
alert( 1 && null && 2 );
```