JS apply, call and bind
1. call
Using call, an object can use method of another object. 🤨
No worries let's start with first step.
const object = {
id: 1234,
firstName: 'James',
lastName: 'Peter',
// Object method
getFullName() {
return this.firs...
vkglobal.hashnode.dev2 min read