JSFiddle - React, Tailwind, and code Playground
JavaScript
var peter = {name:"Peter", age:"23", sex:"Male", country:"Russia", position:"Manager"};
var mark = {name:"Mark", age:"21", sex:"Male", country:"US", position:"Designer"};
var jessica = {name:"Jessica", age:"19", sex:"Female", country:"UK", position:"Programmer"};
function showDetailsInLog(x){
console.log("Employee Name: " + x.name);
console.log("Employee Age: " + x.age);
console.log("Employee Sex: " + x.sex);
console.log("Employee Country: " + x.country);
console.log("Employee Position: " + x.position);
console.log("-----------------------");
}
showDetailsInLog(peter);
showDetailsInLog(mark);
showDetailsInLog(jessica);