JSFiddle - React, Tailwind, and code Playground

HTML

Look in the console

JavaScript

const o = {
	"a.b": 42
};
console.dir(o);
for (let name of Object.keys(o)) {
	console.log(`Property name is ${name}, value is ${o[name]}`);
}