Mengakses fungsi yang dinyatakan di luar konstruktor tetapi di dalam kelas
class Person
{
constructor(name)
{
this.name = name;
this.hello();
}
hello()
{
alert("hello");
}
}
/*if the function is declared outside the constructor, access it with this inthe constructor*/
Javasper