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