Computer >> Máy Tính >  >> Lập trình >> Javascript

Truy cập các biến trong một hàm khởi tạo bằng phương pháp nguyên mẫu với JavaScript?


Đối với điều này, hãy sử dụng "nguyên mẫu". Các đối tượng JavaScript kế thừa các thuộc tính và phương thức từ một nguyên mẫu. Để truy cập các biến, chúng tôi cũng đã sử dụng “this” trong JavaScript.

Ví dụ

function Customer(fullName){
   this.fullName=fullName;
}
Customer.prototype.setFullName = function(newFullName){
   this.fullName=newFullName;
}
var customer=new Customer("John Smith");
console.log("Using Simple Method = "+ customer.fullName);
customer.setFullName("David Miller");
console.log("Using Prototype Method = "+customer.fullName);

Để chạy chương trình trên, bạn cần sử dụng lệnh sau -

node fileName.js.

Đây, tên tệp của tôi là demo79.js.

Đầu ra

Điều này sẽ tạo ra kết quả sau -

PS C:\Users\Amit\JavaScript-code> node demo79.js
Using Simple Method = John Smith
Using Prototype Method = David Miller