JSFiddle - React, Tailwind, and code Playground
by jmaxwell21
HTML
<div id="result">
</div>
JavaScript
function test(page, pageSettings ={}, translation = 'test') {
console.log(translation);
document.getElementById('result').innerText = 'Translation: ' + translation;
}
test('Foo', 'Bar');