JSFiddle - React, Tailwind, and code Playground

by ksoncan34

HTML

<div id="result">
  
</div>

JavaScript

function test(page, pageSettings ={}, translation = 'test') {
	document.getElementById('result').innerText = 'Page Settings: ' + pageSettings + ' Translation: ' +  translation;
}

test('Foo', undefined, 'Bar');