The blog is to experiment with various technologies.
class Person {
type = "developer";
constructor(name){
this.name =name
}
let p = new Person("sangram");
console.log(p.constructor.name) // Person
No comments:
Post a Comment