You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Every Function has the prototype property even if we dont supply it
// The default prototype is an object with the only property "contructor" that points back to the function itself
// Arrow functions donot have prototype property. Its undefined by default.
// Arrow functions can never be used as constructor functions. Hence, they can never be invoked with the new keyword. As such, a prototype property does not exist for an arrow function.