Advertisement
Guest User

Untitled

a guest
Dec 9th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if(cuentaCliente &&
  2.     cuentaDestino &&
  3.     (
  4.         (horaTransferencia >= 9 && horaTransferencia <=12)
  5.         || (horaTransferencia >= 15 && horaTransferencia <=20)
  6.     ) &&
  7.      (
  8.         (bancoCliente == bancoDestino && saldoCliente >= montoTransferir)
  9.         || (bancoCliente != bancoDestino && saldoCliente >= montoTransferir+100)
  10.     ))
  11.     alert("transferencia confirmada")
  12. else
  13.     alert("transferencia negada")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement