How to pass double values into a JavaScript array:
var a = 15,2;
var tab = [a];
In fact, I'm trying to do not change a
's value directly, but I need to deal it implicitly. (in my app the a's value is generated dynamically so I can't explicitly change its comma)
This table should have only one cell, but it's taking two cells.
Any brilliant idea, please?