Advertisement
Guest User

Untitled

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