JSFiddle - React, Tailwind, and code Playground

JavaScript

var pet = function(name) {                
      var getName = function() {    
        return console.log(name);               
      } 
      return getName;                   
    },
    
    myPet = pet("Vivie"); 
    console.log(typeof myPet());