Give two examples of objects in JavaScript.

Certainly! Here are two examples of objects in JavaScript:

1. Object with Key-Value Pairs:

   let person = {
     name: "Alice",
     age: 30,
     city: "Wonderland"
   };


2. Array:
   
   let fruits = ["apple", "orange", "banana"];


These examples demonstrate different types of objects:

- Object with Key-Value Pairs: An object that contains key-value pairs, where each key is a property and each value is the corresponding value for that property.

- Array: Arrays in JavaScript are a type of object used to store ordered lists of values. The values can be of any data type, and each value in the array has an index starting from 0.

Both of these examples highlight the versatility of objects in JavaScript for representing structured data and organizing information.