I have ToothSequence
array which contains all integer type values
Whenever i want to compare the element or add integer i have to parseInt
is as shown parseInt(ToothSequence[i]) + 1
var ToothSequence = $("#hndBridge").val().split("|");
for (i = 1; i <= ToothSequence.length; i++) {
if (parseInt(ToothSequence[i]) + 1 == parseInt(ToothSequence[i + 1]))
{
Is it possible to make integer array in jquery? if not please suggest me