How to create and use a function inside an object in JavaScript

1 Answer

0 votes
const obj = {
  num: 12,
  sum(a, b) {
    return a + b + this.num;
  },
};

console.log(obj.sum(7, 5)); 
 
  
  
  
  
/*
run:
  
24
  
*/

 



answered May 2, 2022 by avibootz

Related questions

1 answer 165 views
1 answer 123 views
1 answer 149 views
1 answer 141 views
1 answer 145 views
1 answer 154 views
...