JSFiddle - React, Tailwind, and code Playground

by aanita0309

HTML

<div>

</div>

CSS

div{
  border:3px solid;
  resize: horizontal;
  overflow: auto;
}

JavaScript

Person= new Education()
Person.name ="a";
Person.surname="p";
var Person;
Person.residence = "pune";
Person.age="40";
Object.freeze(Person);
//console.log(delete Person.name);
alert(delete Person.name);

for(var item in Person){
	//console.log(item);
  alert(item);
}

function Education(){

this.education ="B.E";
}