5-1函数作为对象中的方法

  1. var obj={
  2. name:"ming",
  3. sayName:function(){
  4. console.log(this.name)
  5. }
  6. obj.sayName();

函数在对象中作为方法的语法(三种)

  1. <script>
  2. /*
  3. 函数在对象中作为方法的语法(三种)
  4. */
  5. var obj = {
  6. name:"shang",
  7. sayName(){
  8. console.log(this.name)//在方法中,谁执行方法,this就指向谁
  9. },
  10. sayAge:()=>{
  11. console.log(18)
  12. },
  13. saySkill:function(){
  14. console.log("javascript")
  15. }
  16. }
  17. obj.sayName();
  18. </script>