JSFiddle - React, Tailwind, and code Playground

by 8950s

JavaScript

const x = function() {
  console.log(this) // Logs window
}

const y = function() {
  console.log(this)
}.bind('Something else') // Logs 'Something else'

x()
y()