JSFiddle - React, Tailwind, and code Playground
HTML
<div id='one'></div>
<div id='two'></div>
JavaScript
var one = document.getElementById('one'),
two = document.getElementById('two');
var User = {
fullName: 'John Black',
print: function() {
getUserComments(function(data) {
console.log(this.fullName + ' made ' + data.comments + ' comments');
});
}
};
one.innerHTML = User.fullName;