Array :-
foreach ($relatedProducts as $relatedProduct) {
$_product = $objectManager->create('Magento\Catalog\Model\Product')->load($relatedProduct->getId());
$skus = $_product->getSku(); //get name
$array[] = $skus;
}
$str = serialize($array);
$strenc = urlencode($str);
URL :-
<script>
function onTryonClick(argument) {
var url = "https://modakatech.com/camweara_vaibhav/index.php?skus=<?php echo $strenc; ?>&lengths=<?php echo $lengths;?>&cat=<?php echo $catlast;?>";
alert(url);
</script>