JSFiddle - React, Tailwind, and code Playground

JavaScript

function cat(){
    var cat = 'VAR'
    if (true){
        let cat = 'LET'
        // here the value of cat is "LET"
        console.log(cat);
    }
    // here the value of cat is "VAR"
    console.log(cat);
}

cat();