JSFiddle - React, Tailwind, and code Playground

by kkdaily

HTML

<h1>
Closure
</h1>

JavaScript

/* function makeAPet(name) {
  return function() {
    const pet = {
      name,
      print() {
        console.log('my name is ' + this.name);
      }
    }
  }
}

const cat = makeAPet('cat');
const dog = makeAPet('dog');
const bird = makeAPet('bird');

cat();
dog();
bird(); */

alert('ugh')