JSFiddle - React, Tailwind, and code Playground

by kontrach

HTML

<input type="text">

JavaScript

var input = document.querySelector('input');

var person = {
	name: 'Bob',
  sayMyName(){ 
  	input.value = 'My name is: ' + this.name; 
  }
}
// 
person.sayMyName();

var anotherPerson = {
	name: 'John',
}

// change context
person.sayMyName.call(anotherPerson);