Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, May 11, 2017

FreeCodeCamp Manipulating Complex Objects Sample Solution


var myMusic = [
  {
    "artist": "Billy Joel",
    "title": "Piano Man",
    "release_year": 1973,
    "formats": [
      "CS",
      "8T",
      "LP" ],
    "gold": true
  }
  // Add record here
];
myMusic.push({
  "artist": "John Mayer",
  "title": "Continuum Extended",
  "release_year": 2017,
  "formats": [
      "CS",
      "8T",
      "LP" ]
});

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts