comment additionner deux var dans jQuery

var a = 1;
var b = 2;
var c = (+a) + (+b);
alert(c); //or whatever you want
Annoyed Alpaca