JSFiddle - React, Tailwind, and code Playground

by rpflorence

HTML

<div>I am a div</div>

JavaScript

console.log('Just normal old this:', this);

function test(){
    console.log(this);
}

test();
test.apply(document);

var obj = { ryan: 'Recht' };
test.apply(obj);

var dude = 'dude';
test.apply(dude);

var div = document.getElementsByTagName('div')[0];
test.apply(div);