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

115 B

importance: 5


if (a string with zero)

Will alert be shown?

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