obiecte

by mugur_serban

JavaScript

var student = {
  firstName: "Ion",
  lastName: "Popescu",
  notaMate: 10,
  notaRomana: 7,
  toString: function(){
    return this.firstName + ' ' + this.lastName;
  },
  valueOf: function(){
    return (this.notaMate + this.notaRomana) / 2;
  }
  
}
alert(1*student);