JSFiddle - React, Tailwind, and code Playground

by tara5

JavaScript

// 2: what is the faulty logic in the following code?
var foo = 'hello';
 
(function() {
  var foo = foo || 'world';
  console.log(foo);
})();

// foo value?