Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 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. function myApartment() {}
  12.  
  13. var myCoffeeMaker = 'Aeropress';
  14. var buildingAddress = '150 E 14th St, New York, NY';
  15. var myCloset = 'Extra coats in the back';
  16. var buildingLaundryCode = 4927;
  17. var myRefridgerator = 'Filled with veggies and dark chocolate.';
  18. var myDog = 'Nikko';
  19. var buildingPhone = '(481) 516-2342';
  20.  
  21. // Do not edit the code after this line
  22. document.write("**Apartment Building Information**");
  23. document.write("Laundry code: " + buildingLaundryCode + "\nPhone: " + buildingPhone + "\nMailing address: " + buildingAddress);
  24. </script>
  25.  
  26.  
  27.  
  28. <script id="jsbin-source-javascript" type="text/javascript">function myApartment() {}
  29.  
  30. var myCoffeeMaker = 'Aeropress';
  31. var buildingAddress = '150 E 14th St, New York, NY';
  32. var myCloset = 'Extra coats in the back';
  33. var buildingLaundryCode = 4927;
  34. var myRefridgerator = 'Filled with veggies and dark chocolate.';
  35. var myDog = 'Nikko';
  36. var buildingPhone = '(481) 516-2342';
  37.  
  38. // Do not edit the code after this line
  39. document.write("**Apartment Building Information**");
  40. document.write("Laundry code: " + buildingLaundryCode + "\nPhone: " + buildingPhone + "\nMailing address: " + buildingAddress);
  41. </script></body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement