I wanted to send array to server and do check in nodejs code
function(project id){// Project id = [1,3,4,5]
var data : project id
$.ajax({
type:'POST',
url: '/checkstatus',
data: data,
}).function(done){
console.log(true);
}
}
// Could you please correct the Ajax code and as well as how do you get input in req in server side. i want to run loop in server side.