Object

An object is a collection of variables and functions, which are called properties and methods in an object.
Make object
let card = {
  rank: 2,
  suit: `clubs`
}
Get property from object
card.rank // will be 2
card.suit // will be `clubs`