JSFiddle - React, Tailwind, and code Playground

by Arnaud Buchholz

JavaScript

const test = (key, param = {}) => {
  param[key] = 'hello';
  return param;
}

const shared = {}
console.log(test('a'));
console.log(test('b'));