Advertisement
DEKTEN

NODE_WEB_004

Sep 13th, 2021
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.     </head>
  5.     <body>
  6.         <script>
  7.  
  8.             function myFunction( a_1 , a_2 , a_3 )
  9.             {
  10.  
  11.                 console.log( " a_1 : " , a_1 );
  12.                 console.log( " a_2 : " , a_2 );
  13.                 console.log( " a_3 : " , a_3 );          
  14.             };
  15.  
  16.             let i ;
  17.             for( i = 0 ; i < 10 ; i++ )
  18.             {
  19.  
  20.                 myFunction( i*1 , i*2 , i*3 );
  21.  
  22.             };
  23.  
  24.             console.log( "what is i" , i );
  25.        
  26.         </script>
  27.        
  28.        
  29.         <p> This is a paragraph </p>
  30.  
  31.     </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement