JavaScript Object – JavaScript object is a collection of key-value pairs where any kind of data type value can be store. An object is like an array but the array…
Optional Chaining Operator – optional chaining operator ?. is an operator which allow to properly get access to deep nested level key-value pair without throwing an error. Like . we use…