Create a new object with an array of properties vimeo

Here is an example of creating a new object with an array of properties in JavaScript:

const video = {
  title: "My Video",
  description: "This is a test video",
  tags: ["vimeo", "video", "test"],
  categories: ["music", "entertainment"],
  duration: 300,
  views: 0,
  comments: []
};

In this example, the video object has the following properties:

You can access and manipulate the properties of the video object using dot notation or bracket notation. For example:

console.log(video.title); // Output: "My Video"
video.tags.push("newtag"); // Add a new tag to the array
console.log(video.tags); // Output: ["vimeo", "video", "test", "newtag"]