en.javascript.info/01-js/02-first-steps/12-ifelse/03-sign/if_sign/index.html
Ilya Kantor f301cb744d init
2014-10-26 22:10:13 +03:00

23 lines
272 B
HTML
Executable file

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script>
var value = prompt('Введите число', 0);
if (value > 0) {
alert(1);
} else if (value < 0) {
alert(-1);
} else {
alert(0);
}
</script>
</body>
</html>