Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Laboratoriska</title>
- </head>
- <body>
- <script>
- vlez=prompt("Vnesete String");
- string=vlez;
- var str=string.split(" ");
- var najgolem=0;
- var zbor=0;
- for(var i=0;i<str.length;i++){
- if(najgolem<str[i].length){
- najgolem=str[i].length;
- zbor=str[i];
- }
- }
- document.write(zbor);
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement