سلام من تازگي شروع به يادگيري جاوااسكريپت كردم و تو حل يك تمرين به مشكل برخوردم
ميخاستم ابتدا يك ابجكت با اسم مشخص بسازم و بعد با فانكشن اسم رو عوض كنم و مبحث يادگيري object constructive ها بوده , و كد رو وقتي اجرا ميكنم undefined مينويسه
<!DOCTYPE html>
<html>
<body>
<script>
var user = {
thename: "David",theage:21 ,
};
function user(name,age){
this.name = thename;
this.age = theage;
}
changename = function (name){
this.name = name ;
}
changename("John");
console.log(user.name);
document.write(user.name);
</script>
</body>
</html>
درود خوبی...
کد زیر:
<p id="text"></p>
<script>
function Person(firstName,lastName,age,eyeColor) {
this.firstName = firstName;
this.lastName = lastName;
this.age = age;
this.changeName = function (name) {
this.lastName = name;
}
}
const myMother = new Person("Sally","Rally",48);
myMother.changeName("Raymond");
document.getElementById("text").innerHTML =
"My mother's last name is " + myMother.lastName;
</script>
آیا مایل به ارسال نوتیفیکیشن و اخبار از طرف راکت هستید ؟