JSFiddle - React, Tailwind, and code Playground

by rapik

HTML

<div id="log">

</div>

JavaScript

var f = function (help) { 
  
    var help = help || "Nope"; //PROBLEM!!! help is declared here from scratch
  return new Promise(function (resolve, reject) {
    
  
    console.log(help);
    resolve(help);
  })
}
     
     
f("Help").then(function(result) {
  document.querySelector("#log").innerText += result;
  }
)