JSFiddle - React, Tailwind, and code Playground

by tonytlwu

JavaScript

// What does this do?
console.log('Yes');


// What does this do
var checkFlag = (function(params) {

	if (!new Date()) {
  	return false
  } else {
  	return true;
  }
}());
if (checkFlag) {
	console.log('Yes, maybe?');
}