Hi Prab,
you can get the array parameter by adding brackets to the parameter name in the get call.
var tagsArray = $.request.parameters.get("tagsArray[]");
This is necessary, because in the request URL the parameter "tagsArray" is called "tagsArray%5b%5d" (= "tagsArray[]" ) because of the array value.
Best regards,
Florian