Advertisement
Guest User

Untitled

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