<html> <head> <script> function Person(firstName,lastName) { this.firstName = firstName; this.lastName = lastName; this.fullName = fullName; /* this.fullName=function(){ return this.firstName + " " + this.lastName; } */ } function fullName() { return this.firstName + " " + this.lastName; } var myperson=new Person("Ne�et","Erta�"); alert(myperson.fullName()); </script> </head> <body> <h1>JavaScript Yal�n Nesne</h1> </body> </html>Dosyayı İndir