en.javascript.info/1-js/02-first-steps/10-ifelse/1-if-zero-string/task.md
Ilya Kantor 9ad9063d00 up
2016-11-28 21:35:42 +03:00

14 lines
115 B
Markdown

importance: 5
---
# if (a string with zero)
Will `alert` be shown?
```js
if ("0") {
alert( 'Hello' );
}
```