function Person(firstName, lastName) { | |
var fstName = firstName; | |
var lstName = lastName; | |
this.setFirstName = function(firstName) { fstName = firstName; }; | |
this.getFirstName = function() { return fstName; }; | |
this.setLastName = function(lastName) { lstName = lastName; }; | |
this.getLastName = function() { return lstName; } | |
} | |
var psn1 = new Person('Hoang', 'Pham'); | |
console.log(ps1.fstName); // Undefined, không thể truy cập được | |
console.log(ps1.getFirstName()); // Hoang |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment