JSFiddle - React, Tailwind, and code Playground

by Richard Hunter

JavaScript

// backgroundHeight: percentage e.g. 100
function foo(backgroundHeight) {
	const background_height = backgroundHeight / 100;
  
  // other stuff here...
  
  return background_height;
}

console.log(foo(34));

function bar(backgroundHeight) {
	backgroundHeight = backgroundHeight / 100;
  
  // other stuff here...
  
  return backgroundHeight;
}
console.log(bar(23));