Salut
J'ai fais un objet
et au new Lestage, j'ai une erreur Lestage is not a constructor...
Du coup je comprend pas trop.. Merci de votre coup d'oeil !
J'ai fais un objet
var lestage = new Lestage(80);
var Lestage = function(vitesseMax){
this.vitMax = vitesseMax,
this.vitMetr = '',
this.pressDyn = '',
this.effTour = '',
this.effPass = '',
this.mRenvers = '',
this.mStab = '',
this.ePlusOrMin = '',
calculLestage = function(vitesseMax)
{
this.vitMax = vitesseMax;
this.vitMetr = this.vitMax / 3.6;
this.pressDyn = (this.vitMetr*this.vitMetr)/16.3;
$(".input-v-B").val(round(this.vitMetr,1));
$(".input-v-C").val(round(this.pressDyn,1));
}
}
et au new Lestage, j'ai une erreur Lestage is not a constructor...
Du coup je comprend pas trop.. Merci de votre coup d'oeil !