JSFiddle - React, Tailwind, and code Playground

by petermorlion

JavaScript

function foo(text){
	console.log(text);
}

function bar(text, otherText) {
  foo(text);
	console.log(otherText);
}

foo('foo');
bar('foo', 'bar');