Objects

//apple object
var apple =
{
        weight: 5
}

console.log(apple);

//human object
var human = 
{
        name: "Jason",
        weight: 210
}

console.log(human);