JSFiddle - React, Tailwind, and code Playground

by batcave

JavaScript

const data = {
  firstLine: 'this.sharedTexts.firstLine',
  postalCode: 'this.sharedTexts.postalCode',
  city: 'this.sharedTexts.city',
  country: 'this.sharedTexts.country'
}

for (const [key, value] of Object.entries(data)) {
  console.log(`${key} - ${value}`);
}