set function in object javascript code example
Example 1: adding function to objects js
var myObj = {
myFunc: function(param){
}
}
Example 2: js create object with properties
function Car(make, model, year) {
this.make = make;
this.model = model;
this.year = year;
}
Example 3: set methods in js
let chars = new Set(['a', 'a', 'b', 'c', 'c']);Code language: JavaScript (javascript)
Example 4: object set js
let nombres = [10, 45, 75, 10 ,24,45 ] ;
let monSet = new Set() ;
monSet.add('100') ;
monSet.add('280') ;
console.log(monSet.size) ;