JSFiddle - React, Tailwind, and code Playground
JavaScript
const x ={ foo(){
console.log( 'hi');
return 'hi';
goo: null;
}};
console.log( x.foo?.(), x.goo?.());
const x ={ foo(){
console.log( 'hi');
return 'hi';
goo: null;
}};
console.log( x.foo?.(), x.goo?.());