JSFiddle - React, Tailwind, and code Playground

by lbstr

JavaScript

Object.prototype.log = function() {
  console.log(this);
  return this;
}

var test = { 'foo' : 'bar'};
test.log();