en.javascript.info/1-js/2-first-steps/13-ifelse/1-if-zero-string/task.md
Ilya Kantor 3dc3018fd1 works
2016-07-02 18:11:36 +03:00

115 B

importance: 5


if (a string with zero)

Will alert be shown?

if ("0") {
  alert( 'Hello' );
}