JSFiddle - React, Tailwind, and code Playground

by ruhul105

JavaScript

let post = {
 title: "New Features in Javascript",
 replies: 19,
 lastReplyFrom: "Sam"
};

for (let property of post) {
console.log(property);
}