JSFiddle - React, Tailwind, and code Playground

JavaScript

var name = "Bob";

var book = {
    name: "Harry Potter",
    writeName: function() {
        var _this = this;
        return function() {
            console.log(_this.name);
        }
    }
};

var book2 = book;
book = null;
book2.writeName()();