Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 157 Bytes

File metadata and controls

14 lines (10 loc) · 157 Bytes
let value = prompt('Nhập một số', 0);

if (value > 0) {
  alert( 1 );
} else if (value < 0) {
  alert( -1 );
} else {
  alert( 0 );
}