I am trying to add two variables but they are concatenating with each other instead of adding
var price = 10;
$("#val").blur(function(){
var get_val = $(this).val();
var get_vale = price + get_val ;
alert("there are " + get_vale + " in your cart");
});
How do I add these variables and not concatenate them?