JSFiddle - React, Tailwind, and code Playground
by rexonms
JavaScript
//ES6 this and bind
let person1 = {
firstName = 'jack'
lastName = 'davis'
}
let person2 = {
firstName = 'joe'
lastName = 'doe'
}
function hello(greetings) {
console.log(`${greetings} ${this.firstName} ${this.lastName}!!`)
}
hello.bind(person1, 'What\'s up')()
hello.bind(person2, 'Kay paso')()