Guest User

Untitled

a guest
Oct 16th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title>ot4d</title>
  6. </head>
  7. <body>
  8. <input id="postiNumero">
  9. <button onclick="x();">Tarkasta</button>
  10. <script>
  11. function x(){
  12. var posti_nro = document.getElementById("postiNumero").value;
  13. var check = console.log(tarkastaPostiNumero(posti_nro));
  14.  
  15. function tarkastaPostiNumero(numero) {
  16. if(posti_nro.toString().length == 5){
  17. return true;
  18. }
  19. else {
  20. return false;
  21. }
  22. }
  23. }
  24. </script>
  25. </body>
Add Comment
Please, Sign In to add comment