Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html>
- <head>
- </head>
- <body>
- <script>
- function myFunction( a_1 , a_2 , a_3 )
- {
- console.log( " a_1 : " , a_1 );
- console.log( " a_2 : " , a_2 );
- console.log( " a_3 : " , a_3 );
- };
- let i ;
- for( i = 0 ; i < 10 ; i++ )
- {
- myFunction( i*1 , i*2 , i*3 );
- };
- console.log( "what is i" , i );
- </script>
- <p> This is a paragraph </p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement