且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

什么是getters和setters在ECMAScript 6类?

更新时间:2022-10-14 23:39:43

These setter and getter allow you to use the properties directly

var emp = new Employee("TruMan1");
if(emp.name){ // uses the get method in the background
}

emp.name = "New name"; // uses the setter in the background

This is only to set and get the value of the property.

相关阅读

技术问答最新文章