How to split a string in JavaScript with the \",\" as seperator?
,
var expression = "h,e,l,l,o";
var tokens = expression.split("\,");
alert(tokens[0]);// will return h