Challenge Declare JavaScript Objects As Variables - ashish9342/FreeCodeCamp GitHub Wiki

Challenge Declare JavaScript Objects as Variables

This has a simple format. You declare your variable and have it equal to an object in the form { key: value}

var car = {
  "wheels":4,
  "engines":1,
  "seats":5
};
⚠️ **GitHub.com Fallback** ⚠️