en.javascript.info/1-js/2-first-steps/10-ifelse/1-if-zero-string/task.md
2016-07-20 17:28:12 +03:00

115 B

importance: 5


if (a string with zero)

Will alert be shown?

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