JSFiddle - React, Tailwind, and code Playground

by Brock Callahan

HTML

<div id="output"></div>

JavaScript

writeIt('output', end('First your money then your false', 'clothes'));

function end(str, target) {
  var targetLength = target.length;
  var match = str.substr(-targetLength, targetLength); 
  if (match == target) {
  	return true;
  } else {
  	return false;
  }
}

function writeIt(id, text) {
	document.getElementById(id).innerHTML = text;
}