var Height= (rowData.length * 30) + PPPP.top + 10 ;
When i print this i get 9013510... instead of 90 +135+10 = 235. Why does mine turns into conca
You can use parseInt for that.
var Height= (rowData.length * 30) + parseInt(PPPP.top, 10) + 10 ;
I have changed radix to base 10.