JSFiddle - React, Tailwind, and code Playground

by rogue203

HTML

<script src="https://getfirebug.com/firebug-lite-debug.js"></script>

JavaScript

class pc {
	constructor(name) {
  	this.name = name
    this.bs = 1
    this.bgr = .1
  }
  
}

p = new pc('test') 
console.log(p.name)