avatar
convert the string number into the number Javascript
let sequence = $('#sample_modal #sample_id').val();
» '123'
parseInt(sequence);
» 123
123 === parseInt(sequence);
» true 
You need to login to do this manipulation!