JSFiddle - React, Tailwind, and code Playground

by ClarenceDowns

JavaScript

const player = {name: "Clarence", rank: "Sup", age: 50};

for(let say in player){
if(!player.hasOwnProperty(say)) continue;
console.log(say +  ": " + player[say]);
}