JSFiddle - React, Tailwind, and code Playground

by dmitri_pavlutin

JavaScript

function foo() {
  // The function scope
  let count = 0;
  console.log(count); // logs 0
}

foo();
console.log(count); // ReferenceError: count is not defined