JSFiddle - React, Tailwind, and code Playground

by Nidhi Patel

JavaScript

function Point(x, y) {
 this.x = x;
 this.y = y;
}
var p = Point(7, 5);
console.log(p);