Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin</title>
  7. </head>
  8. <body>
  9. <button>Test</button>
  10. <script id="jsbin-javascript">
  11. //For -of loop
  12.  
  13. let testResults = [1.23, 5.2, 4.1];
  14.  
  15. //shorter syntax for looping thru arrays
  16. for(let testResult of testResults){
  17. console.log(testResult);
  18. }
  19. </script>
  20.  
  21.  
  22.  
  23. <script id="jsbin-source-javascript" type="text/javascript">//For -of loop
  24.  
  25. let testResults = [1.23, 5.2, 4.1];
  26.  
  27. //shorter syntax for looping thru arrays
  28. for(let testResult of testResults){
  29. console.log(testResult);
  30. }</script></body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement