JSFiddle - React, Tailwind, and code Playground
JavaScript
function abc() {
console.log('abc');
var xyz = {
pqr: function() {
console.log('pqr');
},
nmo: function() {
console.log('mno');
},
op: function() {
console.log('op');
}
}
xyz.pqr();
xyz.nmo();
xyz.op()
}
abc()