<html>
<head>
<script>
class Rectangle{
constructor(width,height){
this.width=width;
this.height=height;
}
getArea(){
return this.width*this.height;
}
}
var rectangle=new Rectangle(3,4);
console.log("Alan: "+rectangle.getArea());
</script>
</head>
<body>
<h1> Sınıf </h1>
</body>
</html>
Dosyayı İndir