in simple word prototypes are the mechanism by which JavaScript objects inherit features from one another. understand with an example const person = { greet: function() { return "Hello!"; } }; const student = Object.create(person); console.l...
basics-of-internet.hashnode.dev3 min read
No responses yet.