I have a javascript function which takes in Strings of varying length that contains numbers that may or may not begin with a zero or end with a zero after a decimal point.
'01234' is being changed to a number 1234
'123.40' is being changed to a number 123.4
i need to preserve the actual string value
function muteChannel(channelId)
{
alert("channelId:" + channelId);
return false;
}