Guest User

Untitled

a guest
Nov 17th, 2017
473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 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. // Write your code below this line
  12. var contacts = [
  13. {
  14. firstName: "John",
  15. lastName: "Doe",
  16. phone: "(512) 355-0453",
  17. email: "johndoe@email.com"
  18. },
  19. {
  20. firstName:"Jane",
  21. lastName: "Doe",
  22. phone: "(312) 641-2203",
  23. email: "janedoe@email.com"
  24. },
  25. {
  26. firstName: "Suzie",
  27. lastName: "Smith",
  28. phone: "(415) 604-4219",
  29. email: "suziesmith@email.com"
  30. }
  31. ];
  32. </script>
  33.  
  34.  
  35.  
  36. <script id="jsbin-source-javascript" type="text/javascript">// Write your code below this line
  37. var contacts = [
  38. {
  39. firstName: "John",
  40. lastName: "Doe",
  41. phone: "(512) 355-0453",
  42. email: "johndoe@email.com"
  43. },
  44. {
  45. firstName:"Jane",
  46. lastName: "Doe",
  47. phone: "(312) 641-2203",
  48. email: "janedoe@email.com"
  49. },
  50. {
  51. firstName: "Suzie",
  52. lastName: "Smith",
  53. phone: "(415) 604-4219",
  54. email: "suziesmith@email.com"
  55. }
  56. ];</script></body>
  57. </html>
Add Comment
Please, Sign In to add comment