© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Sruthi
Web developer
const author = { awesome: 'tushar', print: function() { console.log(this); }, }; const reader = { awesome: 'me' }; author.print.call(reader); // { awesome: 'me' } new author.print() // {}
Well summed btw!!
Tushar Tiwari
All Things Web | Blogs on JavaScript and ReactJs
That's Awesome 💛 Thank you for the kind words Sruthi