Write Your JavaScript Code Here

// Create an object with properties 'a', 'b', and 'c' with corresponding values const object1 = { a: 'Rahul', b: 0, c: false }; // Output an array containing the values of object1's properties console.log(Object.values(object1));

Output: