您好,登錄后才能下訂單哦!
這篇文章主要介紹Javascript中訪問器優先級是怎樣的,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
1.正常使用
<script> const product ={ //屬性 data : [ {id :1 ,name : "電腦" , price:5000 , num : 5}, {id :2 ,name : "手機" , price:4000, num : 15}, {id :3 ,name : "相機" , price:6000, num : 25} ], //計算金額(方法) //es6的方法的簡化,將冒號和function關鍵字可以刪除 getAmounts : function(){ return this.data.reduce((t,c) => (t+=c.price *c.num),0); }, //訪問器屬性,將一個方法包裝成一個屬性 //get:是讀取,也叫讀操作 get total(){ return this.data.reduce((t,c) =>(t+=c.price *c.num),0 ); }, //set:是寫操作 訪問器屬性的寫操作 set setNum(num){ this.data[1].num=num; }, set setPrice(price){ this.data[1].price=price; }, }; console.log(product.getAmounts()); console.log("總金額為:",product.total); product.setPrice=100; console.log("更改后的價格為:",product.data[1].price); </script>
2.訪問器屬性的優先級高于同名的普通屬性
<script> let user={ //屬性 data:{name}, //方法 set name(name){ this.data.name=name; }, get name(){ return this.data.name; } } user.name="呵呵"; console.log(user.name); </script>
以上是“Javascript中訪問器優先級是怎樣的”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。