JSFiddle - React, Tailwind, and code Playground
JavaScript
const test = (key, param = {}) => {
param[key] = 'hello';
return param;
}
const shared = {}
console.log(test('a'));
console.log(test('b'));
const test = (key, param = {}) => {
param[key] = 'hello';
return param;
}
const shared = {}
console.log(test('a'));
console.log(test('b'));