Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 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.  
  10. <script id="jsbin-javascript">
  11. /* Your Expression Here */
  12.  
  13. var iceCreamFlavors = ['chocolate', 'vanilla', 'strawberry', 'rocky road'];
  14.  
  15. iceCreamFlavors.length;
  16.  
  17. iceCreamFlavors[0] = 'mint chip';
  18. iceCreamFlavors;
  19.  
  20.  
  21. iceCreamFlavors.pop();
  22. iceCreamFlavors;
  23.  
  24. iceCreamFlavors.push('cherry garcia');
  25. iceCreamFlavors;
  26. </script>
  27.  
  28.  
  29.  
  30. <script id="jsbin-source-javascript" type="text/javascript">/* Your Expression Here */
  31.  
  32. var iceCreamFlavors = ['chocolate', 'vanilla', 'strawberry', 'rocky road'];
  33.  
  34. iceCreamFlavors.length;
  35.  
  36. iceCreamFlavors[0] = 'mint chip';
  37. iceCreamFlavors;
  38.  
  39.  
  40. iceCreamFlavors.pop();
  41. iceCreamFlavors;
  42.  
  43. iceCreamFlavors.push('cherry garcia');
  44. iceCreamFlavors;
  45.  
  46.  
  47. </script></body>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement