What is an object in JavaScript?
What is the difference between dot notation and bracket notation for accessing object properties?
How do you loop through the properties of an object in JavaScript?
What is the difference between an object and an array in JavaScript?
Write a JavaScript function to convert an object into a list of [key, value]
pairs.
Write a function that takes an object representing a person and returns their full name.
Create an Object with your personal details. Now print all the keys of the object in ascending order.
Create an Object with your personal details. Now filter out all the values of the object and show them in descending order.
Create an object to hold information on your favorite recipe. It should have properties for title (a string), servings (a number), and ingredients (an array of strings). On separate lines (one console.log statement for each), log the recipe information so it looks like: Mole Serves: 2 Ingredients: cinnamon cumin cocoa
Create a JavaScript function inside an object which finds max of 3 numbers. Now call this function of the object and print the maximum number.