Object Functions
Exercise 1
- Create a function which checks key values of 2 objects, return a boolean value.
Exercise 2
- Write a JavaScript program to get the length of a JavaScript object.
Exercise 3
- Write a JavaScript function to get all the values of an object's values and return a single String of values
as an example.
Exercise 4
- Create a function to where I can pass Object and Property. Return Boolean value if property exists in the
given object.
Exercise 5
- Change the value of given object. Concat "yes " to the value and return new value of an object.
Exercise 6
- Using Destructuring method, return a value of name key from object.
Exercise 7
- Remove the "color" property from an object and return a string with remaining key vlaue pairs of an object.
Exercise 8
- Create a functions which return value of city from nested object.
Exercise 9
- Create a functions to return an Object (show in console) from given nested Array.
Exercise 10
- Create a function to takes an Object and return true if value of any key is of Number Datatype.
Exercise 11
- Create a function which takes an Array of an Objects and return a String with ell the properties of each
object.